# HG changeset patch # User Augie Fackler # Date 1236636792 18000 # Node ID 74c3baca65c9bfcb822c7d6777013ca469782e30 # Parent d5662e939893fde453962af6098ed18d2eecdb5e bisect: fix --command for me. diff -r d5662e939893 -r 74c3baca65c9 mercurial/commands.py --- a/mercurial/commands.py Mon Mar 16 17:21:06 2009 -0500 +++ b/mercurial/commands.py Mon Mar 09 17:13:12 2009 -0500 @@ -331,7 +331,7 @@ 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: