From fda9badc95c5264ff904280392cbe9a4509ef8bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Louis=20V=C3=A9zina?= <5130500+morpheus65535@users.noreply.github.com> Date: Wed, 17 Oct 2018 20:51:34 -0400 Subject: [PATCH] Fix for check_update working directory after moving every python script to bazarr subdirectory. --- 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 23d5f22ea..f5a87764f 100644 --- a/bazarr/check_update.py +++ b/bazarr/check_update.py @@ -8,7 +8,7 @@ import sqlite3 import git -current_working_directory = os.path.dirname(__file__) +current_working_directory = os.path.dirname(os.path.dirname(__file__)) def gitconfig(): g = git.Repo.init(current_working_directory)