# HG changeset patch # User Augie Fackler # Date 2009-03-09 22:13:12 # Node ID 74c3baca65c9bfcb822c7d6777013ca469782e30 # Parent d5662e939893fde453962af6098ed18d2eecdb5e bisect: fix --command for me. diff --git a/mercurial/commands.py b/mercurial/commands.py --- a/mercurial/commands.py +++ b/mercurial/commands.py @@ -331,7 +331,7 @@ def bisect(ui, repo, rev=None, extra=Non try: while changesets: # update state - status = os.spawnl(os.P_WAIT, commandpath) + status = os.spawnl(os.P_WAIT, commandpath, commandpath) if status == 125: transition = "skip" elif status == 0: