diff hgext/histedit.py @ 19496:607191a45f8c stable

checkunfinished: accommodate histedit quirk Turns out histedit actually intends for commits (but not other operations like update) to be possible during its operation.
author Matt Mackall <mpm@selenic.com>
date Thu, 25 Jul 2013 02:17:52 -0500
parents 11664641fbad
children c2a479a058d0
line wrap: on
line diff
--- a/hgext/histedit.py	Mon Jul 22 10:04:53 2013 +0200
+++ b/hgext/histedit.py	Thu Jul 25 02:17:52 2013 -0500
@@ -874,5 +874,5 @@
 def extsetup(ui):
     cmdutil.summaryhooks.add('histedit', summaryhook)
     cmdutil.unfinishedstates.append(
-        ['histedit-state', False, _('histedit in progress'),
+        ['histedit-state', False, True, _('histedit in progress'),
          _("use 'hg histedit --continue' or 'hg histedit --abort'")])