py3 comparing int/str

This commit is contained in:
j 2017-02-18 12:33:10 +01:00
parent 67d30ef88e
commit ac55ef0fbd

View file

@ -116,7 +116,7 @@ def parse_item_files(files):
subtitle_files = [file for file in version_files[version_key] if file['extension'] == 'srt']
for subtitle_language in sorted(
list(set([file['language'] for file in subtitle_files])),
key=lambda x: LANGUAGES.index(x) if x in LANGUAGES else x
key=lambda x: '%d' % LANGUAGES.index(x) if x in LANGUAGES else x
):
language_files = [file for file in subtitle_files if file['language'] == subtitle_language]
if len(subtitle_files) == len(parts):