diff --git a/lldb_commands/ds.py b/lldb_commands/ds.py index dee5e12..947a2cd 100644 --- a/lldb_commands/ds.py +++ b/lldb_commands/ds.py @@ -1003,8 +1003,8 @@ def sys(debugger, command, exe_ctx, result, internal_dict): output = subprocess.Popen(command, stdin=subprocess.PIPE, stderr=subprocess.PIPE, stdout=subprocess.PIPE, shell=True, env=my_env).communicate() retOutput = '' if output[1]: - retOutput += output[1] - retOutput += output[0].decode("utf-8") + retOutput += output[1].decode("utf-8") + retOutput += output[0].decode("utf-8") result.AppendMessage(retOutput)