mirror of
https://github.com/python/cpython.git
synced 2025-07-24 03:35:53 +00:00
Add another set of quotes to make cmd.exe happy.
This commit is contained in:
parent
71f3f92262
commit
e9dfb0f822
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue