We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b7ce42 commit dad9008Copy full SHA for dad9008
1 file changed
setup.py
@@ -229,7 +229,7 @@ def check_installed_ssl():
229
230
print("Found installed SSL version " + version_string)
231
232
- pattern = re.compile("OpenSSL (\d)\.(\d)\.(\d)(\S+\s?\S*)?\s+\d+ \S+ \d+")
+ pattern = re.compile(r"OpenSSL (\d)\.(\d)\.(\d)(\S+\s?\S*)?\s+\d+ \S+ \d+")
233
match = pattern.match(version_string)
234
if match:
235
version = int(match.group(1)) * 100 + int(match.group(2)) * 10 + int(match.group(3)) * 1
0 commit comments