summaryrefslogtreecommitdiff
path: root/cliapp/runcmd.py
diff options
context:
space:
mode:
Diffstat (limited to 'cliapp/runcmd.py')
-rw-r--r--cliapp/runcmd.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cliapp/runcmd.py b/cliapp/runcmd.py
index a14fa72..7123fed 100644
--- a/cliapp/runcmd.py
+++ b/cliapp/runcmd.py
@@ -272,7 +272,7 @@ def _run_pipeline(procs, feed_stdin, pipe_stdin, pipe_stdout, pipe_stderr,
procs[-1].stderr.close()
if procs[-1].stdout is not None:
procs[-1].stdout.close()
- return errorcodes[-1], ''.join(out), ''.join(err)
+ return errorcodes[-1], b''.join(out), b''.join(err)
def shell_quote(s):