From 7d5c1c235c7a9317d6f9edc4a5942da5a89b3751 Mon Sep 17 00:00:00 2001 From: morpheus65535 <5130500+morpheus65535@users.noreply.github.com> Date: Mon, 1 Jan 2018 14:35:32 -0500 Subject: [PATCH] Bug correction in updater --- check_update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/check_update.py b/check_update.py index 4c2de8633..e73502a45 100644 --- a/check_update.py +++ b/check_update.py @@ -15,9 +15,9 @@ def check_and_apply_update(): logging.info('No new version of Bazarr available.') elif result.startswith('Updating'): logging.info('Bazarr updated to latest version and need to be restarted.') + updated() else: logging.info(result) - updated() def updated(): conn = sqlite3.connect(os.path.join(os.path.dirname(__file__), 'data/db/bazarr.db'), timeout=30)