diff options
author | morpheus65535 <[email protected]> | 2022-09-22 17:22:55 -0400 |
---|---|---|
committer | morpheus65535 <[email protected]> | 2022-09-22 17:22:55 -0400 |
commit | e7d22687a0a3897a46a623bd4f47ca5a926a5e95 (patch) | |
tree | 162182d55b74e93c56b3bf3d7a5896f676ddbdfe | |
parent | d3defa2e09e93ef4340f740f9acfa327914b5c42 (diff) | |
download | bazarr-1.1.2-beta.9.tar.gz bazarr-1.1.2-beta.9.zip |
no log: fixed importv1.1.2-beta.9
-rw-r--r-- | bazarr/main.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bazarr/main.py b/bazarr/main.py index cb26b3635..9f14b0a96 100644 --- a/bazarr/main.py +++ b/bazarr/main.py @@ -19,6 +19,7 @@ import app.libs # noqa W0611 from app.get_args import args # noqa E402 from app.check_update import apply_update, check_releases, check_if_new_update # noqa E402 from app.config import settings, configure_proxy_func, base_url # noqa E402 +from init import * # noqa E402 # Install downloaded update if bazarr_version != '': @@ -33,7 +34,6 @@ else: # there's missing embedded packages after a commit check_if_new_update() -from init import * # noqa E402 from app.database import System # noqa E402 from app.notifier import update_notifier # noqa E402 from languages.get_languages import load_language_in_db # noqa E402 |