From 3c69e4374fc3ef496003a39917df4d3c3e4af964 Mon Sep 17 00:00:00 2001 From: Stefan Midjich Date: Thu, 16 Nov 2017 21:36:37 +0100 Subject: [PATCH] stdout no longer needed with check_output --- tools/manage_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/manage_client.py b/tools/manage_client.py index 8618ad7..09de44f 100644 --- a/tools/manage_client.py +++ b/tools/manage_client.py @@ -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')