Chromium Code Reviews| Index: gclient_utils.py |
| =================================================================== |
| --- gclient_utils.py (revision 30264) |
| +++ gclient_utils.py (working copy) |
| @@ -214,6 +214,10 @@ |
| in_line = "" |
| while in_byte: |
| if in_byte != "\r": |
| + if not print_messages: |
|
M-A Ruel
2009/10/27 23:31:13
Move this inside the print_stdout. You don't want
Dirk Pranke
2009/10/27 23:44:30
Are you sure? In the old version we would've print
|
| + print("\n________ running \'%s\' in \'%s\'" |
| + % (' '.join(command), in_directory)) |
| + print_messages = True |
| if print_stdout: |
| sys.stdout.write(in_byte) |
| if in_byte != "\n": |