# HG changeset patch # User Guillaume Chazarain # Date 1187094576 -7200 # Node ID c13610d5642cb2e2343442adb2b23e33f7893f14 # Parent 86cd6fd610428f5b68976acf2afcb3e0fa84e79a Return 0 as 'hg bisect reset' is successful diff --git a/hgext/hbisect.py b/hgext/hbisect.py --- a/hgext/hbisect.py +++ b/hgext/hbisect.py @@ -81,7 +81,7 @@ class bisect(object): # Not sure about this #self.ui.write("Going back to tip\n") #self.repo.update(self.repo.changelog.tip()) - return 1 + return 0 def num_ancestors(self, head=None, stop=None): """