changeset 4493:50a46ae14efb

hbisect: fix a typo in error message
author TK Soh <teekaysoh@yahoo.com>
date Fri, 20 Apr 2007 16:17:42 -0500
parents 28cbe9e01f17
children 99f411ba0380
files hgext/hbisect.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/hgext/hbisect.py
+++ b/hgext/hbisect.py
@@ -136,7 +136,7 @@ class bisect(object):
             return d
 
         if head in stop:
-            raise util.Abort(_("Unconsistent state, %s:%s is good and bad")
+            raise util.Abort(_("Inconsistent state, %s:%s is good and bad")
                              % (cl.rev(head), hg.short(head)))
         n_child = num_children(head)
         for i in xrange(cl.rev(head)+1):