mirror of https://github.com/python/cpython.git
Drop double quoting again. I'm at a loss when to quote and when not.
This commit is contained in:
parent
3407dfbaf9
commit
b15d1a7981
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue