Add another set of quotes to make cmd.exe happy.

This commit is contained in:
Martin v. Löwis 2012-05-18 14:17:43 +02:00
parent 71f3f92262
commit e9dfb0f822
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ def find_all_on_path(filename, extras = None):
# is available.
def find_working_perl(perls):
for perl in perls:
fh = os.popen('"%s" -e "use Win32;"' % perl)
fh = os.popen('""%s" -e "use Win32;""' % perl)
fh.read()
rc = fh.close()
if rc: