diff --git a/src/command_system/implementation/execute.py b/src/command_system/implementation/execute.py index 5089d5128..e81957d41 100644 --- a/src/command_system/implementation/execute.py +++ b/src/command_system/implementation/execute.py @@ -115,6 +115,6 @@ class Show(Execute): stdout, stderr = cls.fetch(popen) success = popen.returncode == 0 if success and stdout: - processor.send(stdout) + processor.send(stdout.decode('utf8')) elif not success and stderr: processor.echo_error(stderr)