Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b15d1a7

Browse files
committed
Drop double quoting again. I'm at a loss when to quote and when not.
1 parent 3407dfb commit b15d1a7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

PCbuild/build_ssl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def find_all_on_path(filename, extras = None):
4646
# is available.
4747
def find_working_perl(perls):
4848
for perl in perls:
49-
fh = os.popen('""%s" -e "use Win32;""' % perl)
49+
fh = os.popen('"%s" -e "use Win32;"' % perl)
5050
fh.read()
5151
rc = fh.close()
5252
if rc:

0 commit comments

Comments
 (0)