From 79f81e0edbcb994db1816d874a448b992b81a00f Mon Sep 17 00:00:00 2001 From: morpheus65535 Date: Mon, 2 May 2022 23:37:35 -0400 Subject: [PATCH] no log: fixed ImportError when Bazarr update itself from 1.0.4 without the daemon process being restarted. --- bazarr/get_args.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 bazarr/get_args.py diff --git a/bazarr/get_args.py b/bazarr/get_args.py new file mode 100644 index 000000000..2948e6487 --- /dev/null +++ b/bazarr/get_args.py @@ -0,0 +1,4 @@ +# coding=utf-8 + +# This is required to prevent daemon (bazarr.py) from raising an ImportError Exception after upgrading from 1.0.4 +from .app.get_args import args # noqa: W0611