From 6f3bde1d7291a855fc30642286c05d27f9c5a3d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Louis=20V=C3=A9zina?= <5130500+morpheus65535@users.noreply.github.com> Date: Mon, 28 Oct 2019 19:45:25 -0400 Subject: [PATCH] Fix for failed restart after update. --- bazarr/check_update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bazarr/check_update.py b/bazarr/check_update.py index f3ef75a7f..15b1256a3 100644 --- a/bazarr/check_update.py +++ b/bazarr/check_update.py @@ -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: