Chromium Code Reviews| Index: scm.py |
| diff --git a/scm.py b/scm.py |
| index 42df43c1ea06c21f300287bf77e223708bc3e6e9..4e9c11c7cf12c67c8ecfd6bcf0d45d75a2f85207 100644 |
| --- a/scm.py |
| +++ b/scm.py |
| @@ -99,7 +99,8 @@ class GIT(object): |
| @staticmethod |
| def Capture(args, cwd, **kwargs): |
| return subprocess2.check_output( |
| - ['git'] + args, cwd=cwd, stderr=subprocess2.PIPE, **kwargs) |
| + ['git', '--no-pager'] + args, |
| + cwd=cwd, stderr=subprocess2.PIPE, **kwargs) |
| @staticmethod |
| def CaptureStatus(files, cwd, upstream_branch): |