From 880a4e76578312d1c17a6b048b01cfab70b776c7 Mon Sep 17 00:00:00 2001 From: Jim Edwards Date: Thu, 17 Sep 2020 11:59:38 -0600 Subject: [PATCH] remove decode --- manic/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manic/utils.py b/manic/utils.py index dfe1f4de34..f57f43930c 100644 --- a/manic/utils.py +++ b/manic/utils.py @@ -255,7 +255,7 @@ def execute_subprocess(commands, status_to_caller=False, hanging_timer.start() try: output = subprocess.check_output(commands, stderr=subprocess.STDOUT, - universal_newlines=True).decode('utf-8') + universal_newlines=True) log_process_output(output) status = 0 except OSError as error: