Skip to content

Commit

Permalink
2023.1 patch 2 release code drop
Browse files Browse the repository at this point in the history
  • Loading branch information
hjain-perforce committed Oct 26, 2023
1 parent 0b7ce42 commit dad9008
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ def check_installed_ssl():

print("Found installed SSL version " + version_string)

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+")
match = pattern.match(version_string)
if match:
version = int(match.group(1)) * 100 + int(match.group(2)) * 10 + int(match.group(3)) * 1
Expand Down

0 comments on commit dad9008

Please sign in to comment.