| Index: bin/command_wrapper.py
|
| ===================================================================
|
| --- bin/command_wrapper.py (revision 135069)
|
| +++ bin/command_wrapper.py (working copy)
|
| @@ -149,9 +149,9 @@
|
| return p.returncode
|
| if p.returncode == 0:
|
| return 0
|
| - print 'Command %s failed with retcode %d, try %d.' % (
|
| + print >> sys.stderr, 'Command %s failed with retcode %d, try %d.' % (
|
| ' '.join(args), p.returncode, r + 1)
|
| - print 'Command %s failed %d retries, giving up.' % (
|
| + print >> sys.stderr, 'Command %s failed %d retries, giving up.' % (
|
| ' '.join(args), options.retries)
|
|
|
| return p.returncode
|
|
|