From 90441e857d2f0d0224899a328e89fd8d694e45ef Mon Sep 17 00:00:00 2001 From: Zachary Ware Date: Mon, 2 Jun 2014 12:09:13 -0500 Subject: Issue #21623: open pyproject.props with an explicit encoding --- PCbuild/build_ssl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PCbuild/build_ssl.py b/PCbuild/build_ssl.py index dc51781..260cbf3 100644 --- a/PCbuild/build_ssl.py +++ b/PCbuild/build_ssl.py @@ -66,7 +66,7 @@ def find_working_perl(perls): # Fetch SSL directory from VC properties def get_ssl_dir(): propfile = (os.path.join(os.path.dirname(__file__), 'pyproject.props')) - with open(propfile) as f: + with open(propfile, encoding='utf-8-sig') as f: m = re.search('openssl-([^<]+)<', f.read()) return "..\..\openssl-"+m.group(1) -- cgit v0.12