hgext/histedit.py
branchstable
changeset 17315 f320d7ed912f
parent 17285 0f6f10d5f7a6
child 17326 23b2ee0f758d
--- a/hgext/histedit.py	Thu Aug 02 00:52:43 2012 -0500
+++ b/hgext/histedit.py	Mon Jul 30 03:27:07 2012 +0900
@@ -162,9 +162,7 @@
 
 testedwith = 'internal'
 
-editcomment = """
-
-# Edit history between %s and %s
+editcomment = _("""# Edit history between %s and %s
 #
 # Commands:
 #  p, pick = use commit
@@ -173,7 +171,7 @@
 #  d, drop = remove commit from history
 #  m, mess = edit message without changing commit content
 #
-"""
+""")
 
 def between(repo, old, new, keep):
     revs = [old]
@@ -522,6 +520,7 @@
         rules = opts.get('commands', '')
         if not rules:
             rules = '\n'.join([makedesc(c) for c in ctxs])
+            rules += '\n\n'
             rules += editcomment % (node.hex(parent)[:12], node.hex(tip)[:12])
             rules = ui.edit(rules, ui.username())
             # Save edit rules in .hg/histedit-last-edit.txt in case