diff options
author | Mike Dallas <[email protected]> | 2023-05-03 13:51:01 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2023-05-03 08:51:01 -0400 |
commit | 09f0a2783377e366a6a75d60ff57775abe244596 (patch) | |
tree | ab145d107693f1d49d2e44347be3791a86977ca9 | |
parent | 0f84ffb9cd464dbbeae5e00885494c97fac4dd4a (diff) | |
download | bazarr-09f0a2783377e366a6a75d60ff57775abe244596.tar.gz bazarr-09f0a2783377e366a6a75d60ff57775abe244596.zip |
Fixed SyntaxError under Python 3.7v1.2.2-beta.0
-rw-r--r-- | bazarr/subtitles/manual.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bazarr/subtitles/manual.py b/bazarr/subtitles/manual.py index 868918889..45ff4e12b 100644 --- a/bazarr/subtitles/manual.py +++ b/bazarr/subtitles/manual.py @@ -87,8 +87,7 @@ def manual_search(path, profile_id, providers, sceneName, title, media_type): logging.debug(f"BAZARR Skipping {s}, because it doesn't match our series/episode") except TypeError: logging.debug("BAZARR Ignoring invalid subtitles") - finally: - continue + continue initial_hi = None initial_hi_match = False |