bisect: fix --command for me.
authorAugie Fackler <durin42@gmail.com>
Mon, 09 Mar 2009 17:13:12 -0500
changeset 7850 74c3baca65c9
parent 7849 d5662e939893
child 7851 62e33d0f8840
bisect: fix --command for me.
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: