mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-04-24 06:37:16 -04:00
Test
This commit is contained in:
parent
ff11e1d691
commit
97e923e764
1 changed files with 2 additions and 3 deletions
|
@ -36,7 +36,6 @@ def store_subtitles(file):
|
|||
languages = []
|
||||
actual_subtitles = []
|
||||
print file
|
||||
print file.encode('utf-8')
|
||||
if os.path.exists(file):
|
||||
if os.path.splitext(file)[1] == '.mkv':
|
||||
try:
|
||||
|
@ -116,7 +115,7 @@ def series_scan_subtitles(no):
|
|||
c_db.close()
|
||||
|
||||
for episode in episodes:
|
||||
store_subtitles(path_replace(episode[0]).encode('utf-8'))
|
||||
store_subtitles(path_replace(episode[0].encode('utf-8')))
|
||||
|
||||
list_missing_subtitles(no)
|
||||
|
||||
|
@ -127,4 +126,4 @@ def new_scan_subtitles():
|
|||
c_db.close()
|
||||
|
||||
for episode in episodes:
|
||||
store_subtitles(path_replace(episode[0]).encode('utf-8'))
|
||||
store_subtitles(path_replace(episode[0].encode('utf-8')))
|
Loading…
Add table
Add a link
Reference in a new issue