From c12696215078c9f492743274cbc83b6ed444ce7f Mon Sep 17 00:00:00 2001 From: Jon Date: Sun, 12 Dec 2021 23:13:11 -0500 Subject: [PATCH] fix logging with docker --- modules/qbittorrent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/qbittorrent.py b/modules/qbittorrent.py index 6513c0c..05efef6 100644 --- a/modules/qbittorrent.py +++ b/modules/qbittorrent.py @@ -12,7 +12,7 @@ logger = logging.getLogger("qBit Manage") class Qbt: def __init__(self, config, params): self.config = config - config_handler.set_global(length=self.config.args['screen_width'],force_tty=True) + config_handler.set_global(length=self.config.args['screen_width']) self.host = params["host"] self.username = params["username"] self.password = params["password"]