We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aab3bf5 commit 583875dCopy full SHA for 583875d
src/rosdistro/vcs.py
@@ -67,7 +67,7 @@ def ref_is_hash(ref):
67
def _run_command(cmd, cwd=None, env=None):
68
result = {'cmd': ' '.join(cmd), 'cwd': cwd}
69
try:
70
- proc = subprocess.Popen(cmd, cwd=cwd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, env=env)
+ proc = subprocess.Popen(cmd, cwd=cwd, stdout=subprocess.PIPE, env=env)
71
output, _ = proc.communicate()
72
result['output'] = output.rstrip()
73
result['returncode'] = proc.returncode
0 commit comments