changeset 92:08b23beb1c54

curses chunk selector: append "HG:" help section to non-empty messages too
author immerrr <immerrr@gmail.com>
date Tue, 28 Feb 2012 18:47:35 +0400
parents 513697974b5a
children 4e2c6a7c659f
files crecord/chunk_selector.py
diffstat 1 files changed, 9 insertions(+), 9 deletions(-) [+]
line wrap: on
line diff
--- a/crecord/chunk_selector.py
+++ b/crecord/chunk_selector.py
@@ -920,14 +920,6 @@
 
     def commitMessageWindow(self):
         "Create a temporary commit message editing window on the screen."
-        if self.commentText == "":
-            self.commentText = textwrap.dedent("""
-            
-            HG: Enter/resume commit message.  Lines beginning with 'HG:' are removed.
-            HG: You can save this message, and edit it again later before committing.
-            HG: After exiting the editor, you will return to the crecord patch view.
-            HG: --
-            HG: user: %s""" % self.ui.username())
             
         curses.raw()
         curses.def_prog_mode()
@@ -1014,7 +1006,15 @@
         opts['crecord_reviewpatch'] = False
 
         try:
-            self.commentText = opts['message']
+            self.commentText = opts['message'] + \
+                textwrap.dedent("""
+                
+                HG: Enter/resume commit message.  Lines beginning with 'HG:' are removed.
+                HG: You can save this message, and edit it again later before committing.
+                HG: After exiting the editor, you will return to the crecord patch view.
+                HG: --
+                HG: user: %s""" % self.ui.username())
+
         except KeyError:
             pass