diff options
author | morpheus65535 <[email protected]> | 2021-03-30 23:45:59 -0400 |
---|---|---|
committer | morpheus65535 <[email protected]> | 2021-03-30 23:45:59 -0400 |
commit | 8a213e8ad8df58eef844b4c85b002d86033ccd11 (patch) | |
tree | 70e049db47f049c1173185ca2570653f5e87bd05 | |
parent | b11d037d2ef3ada93b3280ad41421bb22003bab3 (diff) | |
download | bazarr-8a213e8ad8df58eef844b4c85b002d86033ccd11.tar.gz bazarr-8a213e8ad8df58eef844b4c85b002d86033ccd11.zip |
no log: Changed package_info file location
-rw-r--r-- | bazarr/init.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bazarr/init.py b/bazarr/init.py index 3ae215331..cfe85c4a6 100644 --- a/bazarr/init.py +++ b/bazarr/init.py @@ -96,7 +96,7 @@ if isinstance(settings.general.enabled_providers, str) and not settings.general. settings.write(handle) # make sure settings.general.branch is properly set when running inside a docker container -package_info_file = os.path.join(os.path.dirname(os.path.dirname(__file__)), 'package_info') +package_info_file = os.path.join(os.path.dirname(os.path.dirname(os.path.dirname(__file__))), 'package_info') if os.path.isfile(package_info_file): try: package_info = {} |