# HG changeset patch # User Thomas Arendsen Hein # Date 1147932231 -7200 # Node ID e7de4dd43472c949aabb46b532f02d309998d3f1 # Parent b3a08ccfb593ca8046fd11136f8b2db77c36733f Removed extra space in bisect output. diff --git a/hgext/hbisect.py b/hgext/hbisect.py --- 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