diff options
-rw-r--r-- | subcmds/cherry_pick.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/subcmds/cherry_pick.py b/subcmds/cherry_pick.py index 0cefec13..01b97e07 100644 --- a/subcmds/cherry_pick.py +++ b/subcmds/cherry_pick.py | |||
@@ -83,8 +83,8 @@ change id will be added. | |||
83 | else: | 83 | else: |
84 | print('NOTE: When committing (please see above) and editing the commit' | 84 | print('NOTE: When committing (please see above) and editing the commit' |
85 | 'message, please remove the old Change-Id-line and add:') | 85 | 'message, please remove the old Change-Id-line and add:') |
86 | print(self._GetReference(sha1), file=stderr) | 86 | print(self._GetReference(sha1), file=sys.stderr) |
87 | print(file=stderr) | 87 | print(file=sys.stderr) |
88 | 88 | ||
89 | def _IsChangeId(self, line): | 89 | def _IsChangeId(self, line): |
90 | return CHANGE_ID_RE.match(line) | 90 | return CHANGE_ID_RE.match(line) |