Update LibreQoS.py

This commit is contained in:
Robert Chacón 2022-09-09 03:22:33 -06:00 committed by GitHub
parent 0dfc0fe0fe
commit 643bcba584
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)