mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
Drop double quoting again. I'm at a loss when to quote and when not.
This commit is contained in:
parent
3407dfbaf9
commit
b15d1a7981
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue