# HG changeset patch # User Thomas Arendsen Hein # Date 1147932231 -7200 # Node ID e7de4dd43472c949aabb46b532f02d309998d3f1 # Parent b3a08ccfb593ca8046fd11136f8b2db77c36733f Removed extra space in bisect output. diff -r b3a08ccfb593 -r e7de4dd43472 hgext/hbisect.py --- a/hgext/hbisect.py Wed May 17 21:52:51 2006 +0200 +++ b/hgext/hbisect.py Thu May 18 08:03:51 2006 +0200 @@ -173,7 +173,7 @@ 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