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

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)