Skip to content

Commit dad9008

Browse files
2023.1 patch 2 release code drop
1 parent 0b7ce42 commit dad9008

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ def check_installed_ssl():
229229

230230
print("Found installed SSL version " + version_string)
231231

232-
pattern = re.compile("OpenSSL (\d)\.(\d)\.(\d)(\S+\s?\S*)?\s+\d+ \S+ \d+")
232+
pattern = re.compile(r"OpenSSL (\d)\.(\d)\.(\d)(\S+\s?\S*)?\s+\d+ \S+ \d+")
233233
match = pattern.match(version_string)
234234
if match:
235235
version = int(match.group(1)) * 100 + int(match.group(2)) * 10 + int(match.group(3)) * 1

0 commit comments

Comments
 (0)