From 643bcba584194e75fc5dd3e26288ce5a2e8ea526 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Chac=C3=B3n?= Date: Fri, 9 Sep 2022 03:22:33 -0600 Subject: [PATCH] Update LibreQoS.py --- v1.2/LibreQoS.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v1.2/LibreQoS.py b/v1.2/LibreQoS.py index 4121dcaa..885d59d6 100644 --- a/v1.2/LibreQoS.py +++ b/v1.2/LibreQoS.py @@ -27,7 +27,7 @@ def shell(command): commands = command.split(' ') proc = subprocess.Popen(commands, stdout=subprocess.PIPE) for line in io.TextIOWrapper(proc.stdout, encoding="utf-8"): # or another encoding - logging.info(result) + logging.info(line) else: logging.info(command)