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