Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/commit/35830abd9b0756df1ff1bae7e05ca7a540266880 You should set ROOT_URL correctly, otherwise the web may not work correctly.

don't raise an exception if compressed format is not supported

pull/976/head
Bazarr 5 years ago
parent b3550cda20
commit 35830abd9b

@ -400,7 +400,7 @@ class LegendasdivxProvider(Provider):
logger.debug('Identified zip archive')
archive = zipfile.ZipFile(archive_stream)
else:
raise Exception('Unsupported compressed format')
raise ValueError('Unsupported compressed format')
return archive

Loading…
Cancel
Save