Commit b15d1a79 authored by Martin v. Löwis's avatar Martin v. Löwis

Drop double quoting again. I'm at a loss when to quote and when not.

parent 3407dfba
......@@ -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:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment