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)