From: Martin v. Löwis Date: Fri, 18 May 2012 13:28:43 +0000 (+0200) Subject: Drop double quoting again. I'm at a loss when to quote and when not. X-Git-Tag: v3.3.0a4~135^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b15d1a7981bcd0fc37b0f391dd98a96a5ed82d63;p=thirdparty%2FPython%2Fcpython.git Drop double quoting again. I'm at a loss when to quote and when not. --- diff --git a/PCbuild/build_ssl.py b/PCbuild/build_ssl.py index 04ad77bf44b2..938812494a4e 100644 --- a/PCbuild/build_ssl.py +++ b/PCbuild/build_ssl.py @@ -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: