Chromium Code Reviews| Index: git_common.py | 
| diff --git a/git_common.py b/git_common.py | 
| index d87fc3aef903c46e2c2dcd2db3e2217e48badeb7..0ccfb010550c0d84cadd60a6ef697cae78ae072b 100644 | 
| --- a/git_common.py | 
| +++ b/git_common.py | 
| @@ -448,7 +448,7 @@ def rebase(parent, start, branch, abort=False): | 
| except subprocess2.CalledProcessError as cpe: | 
| if abort: | 
| run('rebase', '--abort') | 
| - return RebaseRet(False, cpe.output) | 
| + return RebaseRet(False, cpe.stdout) | 
| def remove_merge_base(branch): |