1
0
Fork 0
mirror of https://github.com/morpheus65535/bazarr synced 2025-02-06 22:42:10 +00:00

Fix for failed restart after update.

This commit is contained in:
Louis Vézina 2019-10-28 19:45:25 -04:00
parent b7ef1329ce
commit 6f3bde1d72

View file

@ -296,7 +296,7 @@ def updated(restart=True):
try:
from main import restart
restart()
except requests.ConnectionError:
except:
logging.info('BAZARR Restart failed, please restart Bazarr manualy')
updated(restart=False)
else: