diff hgext/hbisect.py @ 2305:e7de4dd43472

Removed extra space in bisect output.
author Thomas Arendsen Hein <thomas@intevation.de>
date Thu, 18 May 2006 08:03:51 +0200
parents b41d71961aed
children 1772852d7d14
line wrap: on
line diff
--- a/hgext/hbisect.py
+++ b/hgext/hbisect.py
@@ -173,7 +173,7 @@ class bisect(object):
                 self.ui.warn("Could not find the first bad revision\n")
                 sys.exit(1)
             self.ui.write(
-                "The first bad revision is : %s\n" % hg.hex(self.badrev))
+                "The first bad revision is: %s\n" % hg.hex(self.badrev))
             sys.exit(0)
         self.ui.write("%d revisions left\n" % tot)
         best_rev = None