diff --git a/check_update.py b/check_update.py index 9eb7dab5e..4c2de8633 100644 --- a/check_update.py +++ b/check_update.py @@ -13,8 +13,9 @@ def check_and_apply_update(): result = g.pull('origin', branch) if result.startswith('Already'): logging.info('No new version of Bazarr available.') + elif result.startswith('Updating'): + logging.info('Bazarr updated to latest version and need to be restarted.') else: - #logging.info('Bazarr updated to latest version and need to be restarted.') logging.info(result) updated()