From cda6cc5b53ae6a3f70fc105427cae44a76bfe94b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Louis=20V=C3=A9zina?= <5130500+morpheus65535@users.noreply.github.com> Date: Tue, 4 Jun 2019 06:44:02 -0400 Subject: [PATCH] Minor fix for release 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 930bfda1a..f0fbe4cac 100644 --- a/bazarr/check_update.py +++ b/bazarr/check_update.py @@ -10,7 +10,7 @@ from get_args import args from config import settings, bazarr_url from queueconfig import notifications -if not args.no_update: +if not args.no_update and not args.release_update: import git current_working_directory = os.path.dirname(os.path.dirname(__file__))