Skip to content

Commit

Permalink
if not elif
Browse files Browse the repository at this point in the history
  • Loading branch information
Audionut committed Oct 27, 2024
1 parent 39ad19f commit 0431c7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/trackers/OE.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ def process_languages(tracks):
audio_languages.append(audio_lang)
else:
audio_languages.append("")
elif track.get('@type') == 'Text':
if track.get('@type') == 'Text':
language = track.get('Language')
if not language or language is None:
subtitle_lang = cli_ui.ask_string('No subtitle language present, you must enter one:')
Expand Down

0 comments on commit 0431c7b

Please sign in to comment.