mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-01-12 17:57:43 +08:00
Test
This commit is contained in:
parent
239997c8fc
commit
a99f55e624
1 changed files with 3 additions and 3 deletions
|
@ -109,7 +109,7 @@ def full_scan_subtitles():
|
|||
c_db.close()
|
||||
|
||||
for episode in episodes:
|
||||
store_subtitles(path_replace(episode[0]))
|
||||
store_subtitles(path_replace(episode[0]).encode('utf8'))
|
||||
|
||||
def series_scan_subtitles(no):
|
||||
conn_db = sqlite3.connect(os.path.join(os.path.dirname(__file__), 'data/db/bazarr.db'))
|
||||
|
@ -118,7 +118,7 @@ def series_scan_subtitles(no):
|
|||
c_db.close()
|
||||
|
||||
for episode in episodes:
|
||||
store_subtitles(path_replace(episode[0]))
|
||||
store_subtitles(path_replace(episode[0]).encode('utf8'))
|
||||
|
||||
list_missing_subtitles(no)
|
||||
|
||||
|
@ -129,4 +129,4 @@ def new_scan_subtitles():
|
|||
c_db.close()
|
||||
|
||||
for episode in episodes:
|
||||
store_subtitles(path_replace(episode[0]))
|
||||
store_subtitles(path_replace(episode[0]).encode('utf8'))
|
||||
|
|
Loading…
Reference in a new issue