diff options
author | JayZed <[email protected]> | 2024-08-06 14:13:38 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2024-08-06 14:13:38 -0400 |
commit | 2ee008b57bdb8b00844c2401ae26f56efad135e1 (patch) | |
tree | 5e43c0f79004cf15d00104c821ee81b3c9b4e493 | |
parent | 0fc334f731ddda1d70fb4b0ad6fc7c0329c76048 (diff) | |
download | bazarr-2ee008b57bdb8b00844c2401ae26f56efad135e1.tar.gz bazarr-2ee008b57bdb8b00844c2401ae26f56efad135e1.zip |
Removed raising of OSError during subsync (#2584)
-rw-r--r-- | bazarr/subtitles/tools/subsyncer.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bazarr/subtitles/tools/subsyncer.py b/bazarr/subtitles/tools/subsyncer.py index edde5c774..5c7ae38b0 100644 --- a/bazarr/subtitles/tools/subsyncer.py +++ b/bazarr/subtitles/tools/subsyncer.py @@ -97,8 +97,7 @@ class SubSyncer: result = run(self.args) except Exception: logging.exception( - f'BAZARR an exception occurs during the synchronization process for this subtitles: {self.srtin}') - raise OSError + f'BAZARR an exception occurs during the synchronization process for this subtitle file: {self.srtin}') else: if settings.subsync.debug: return result |