Cycles: Fix bad escape character used for dot

This commit is contained in:
Sergey Sharybin 2020-03-16 16:16:15 +01:00
parent 215e474a99
commit f0856b1fda

@ -33,7 +33,7 @@ def _is_using_buggy_driver():
# in the version string, but those cards do not quite work and
# causing crashes.
return True
regex = re.compile(".*Compatibility Profile Context ([0-9]+(\.[0-9]+)+)$")
regex = re.compile(".*Compatibility Profile Context ([0-9]+(\\.[0-9]+)+)$")
if not regex.match(version):
# Skip cards like FireGL
return False