8904N/A--- Python-2.4.2/Lib/distutils/spawn.py 2004-11-10 14:23:14.000000000 -0800
8904N/A+++ Python-2.4.2-new/Lib/distutils/spawn.py 2006-08-22 08:33:41.430344000 -0700
8904N/A@@ -73,7 +73,7 @@
8904N/A if search_path:
8904N/A # either we find one or it stays the same
8904N/A executable = find_executable(executable) or executable
8904N/A- log.info(string.join([executable] + cmd[1:], ' '))
8904N/A+ log.info("%s", string.join([executable] + cmd[1:], ' '))
8904N/A if not dry_run:
8904N/A # spawn for NT requires a full path to the .exe
8904N/A try:
8904N/A@@ -98,7 +98,7 @@
8904N/A if search_path:
8904N/A # either we find one or it stays the same
8904N/A executable = find_executable(executable) or executable
8904N/A- log.info(string.join([executable] + cmd[1:], ' '))
8904N/A+ log.info("%s", string.join([executable] + cmd[1:], ' '))
8904N/A if not dry_run:
8904N/A # spawnv for OS/2 EMX requires a full path to the .exe
8904N/A try:
8904N/A@@ -119,7 +119,7 @@
8904N/A verbose=0,
8904N/A dry_run=0):
8904N/A
8904N/A- log.info(string.join(cmd, ' '))
8904N/A+ log.info("%s", string.join(cmd, ' '))
8904N/A if dry_run:
8904N/A return
8904N/A exec_fn = search_path and os.execvp or os.execv