diff --git a/setup.py b/setup.py index 990326b..34fe6d8 100644 --- a/setup.py +++ b/setup.py @@ -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