Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca3cd00 commit 90441e8Copy full SHA for 90441e8
1 file changed
PCbuild/build_ssl.py
@@ -66,7 +66,7 @@ def find_working_perl(perls):
66
# Fetch SSL directory from VC properties
67
def get_ssl_dir():
68
propfile = (os.path.join(os.path.dirname(__file__), 'pyproject.props'))
69
- with open(propfile) as f:
+ with open(propfile, encoding='utf-8-sig') as f:
70
m = re.search('openssl-([^<]+)<', f.read())
71
return "..\..\openssl-"+m.group(1)
72
0 commit comments