mirror of
https://github.com/morpheus65535/bazarr
synced 2024-12-22 15:54:26 +00:00
Removed raising of OSError during subsync (#2584)
This commit is contained in:
parent
0fc334f731
commit
2ee008b57b
1 changed files with 1 additions and 2 deletions
|
@ -97,8 +97,7 @@ class SubSyncer:
|
||||||
result = run(self.args)
|
result = run(self.args)
|
||||||
except Exception:
|
except Exception:
|
||||||
logging.exception(
|
logging.exception(
|
||||||
f'BAZARR an exception occurs during the synchronization process for this subtitles: {self.srtin}')
|
f'BAZARR an exception occurs during the synchronization process for this subtitle file: {self.srtin}')
|
||||||
raise OSError
|
|
||||||
else:
|
else:
|
||||||
if settings.subsync.debug:
|
if settings.subsync.debug:
|
||||||
return result
|
return result
|
||||||
|
|
Loading…
Reference in a new issue