Chromium Code Reviews| Index: scripts/run_cmd.py |
| diff --git a/scripts/run_cmd.py b/scripts/run_cmd.py |
| index edc00e64d7d83f95d2385e14493d567af19c4f7e..7bfc3a7eb5dac088cb4d1c0fe5c128a9076f9429 100755 |
| --- a/scripts/run_cmd.py |
| +++ b/scripts/run_cmd.py |
| @@ -172,6 +172,7 @@ def _launch_cmd(cmd): |
| Returns: |
| subprocess.Popen instance. |
| """ |
| + print ' '.join(cmd) |
|
epoger
2014/03/13 17:42:45
I would be tempted to
print '_launch_cmd(): %s'
|
| return subprocess.Popen(cmd, shell=False, stderr=subprocess.PIPE, |
| stdout=subprocess.PIPE) |