summaryrefslogtreecommitdiffstats
path: root/subcmds/cherry_pick.py
diff options
context:
space:
mode:
Diffstat (limited to 'subcmds/cherry_pick.py')
-rw-r--r--subcmds/cherry_pick.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/subcmds/cherry_pick.py b/subcmds/cherry_pick.py
index bd396fab..8d81be33 100644
--- a/subcmds/cherry_pick.py
+++ b/subcmds/cherry_pick.py
@@ -97,7 +97,7 @@ change id will be added.
97 97
98 def _StripHeader(self, commit_msg): 98 def _StripHeader(self, commit_msg):
99 lines = commit_msg.splitlines() 99 lines = commit_msg.splitlines()
100 return "\n".join(lines[lines.index("")+1:]) 100 return "\n".join(lines[lines.index("") + 1:])
101 101
102 def _Reformat(self, old_msg, sha1): 102 def _Reformat(self, old_msg, sha1):
103 new_msg = [] 103 new_msg = []