mirror of
https://github.com/morpheus65535/bazarr
synced 2025-02-22 14:00:52 +00:00
Fix for check_update working directory after moving every python script to bazarr subdirectory.
This commit is contained in:
parent
3c1532148a
commit
fda9badc95
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@ import sqlite3
|
||||||
|
|
||||||
import git
|
import git
|
||||||
|
|
||||||
current_working_directory = os.path.dirname(__file__)
|
current_working_directory = os.path.dirname(os.path.dirname(__file__))
|
||||||
|
|
||||||
def gitconfig():
|
def gitconfig():
|
||||||
g = git.Repo.init(current_working_directory)
|
g = git.Repo.init(current_working_directory)
|
||||||
|
|
Loading…
Reference in a new issue