From: Martin v. Löwis <martin@v.loewis.de>
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: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b15d1a7981bcd0fc37b0f391dd98a96a5ed82d63;p=python

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 04ad77bf44..938812494a 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: