stdout no longer needed with check_output

This commit is contained in:
Stefan Midjich 2017-11-16 21:36:37 +01:00
parent 742cf01e86
commit 3c69e4374f
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ if args.refresh:
current_date = datetime.now()
for _line in proc.stdout.splitlines():
for _line in proc.splitlines():
# Convert from bytestring first
line = _line.decode('utf-8')