Skip to content
Snippets Groups Projects
Commit c57a2244 authored by Dicson's avatar Dicson
Browse files

Decode shell output befor send message. Fixes #7407

parent f64c94f6
No related branches found
No related tags found
No related merge requests found
......@@ -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)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment