Skip to content
Snippets Groups Projects
Commit 9c591de3 authored by Rafael Guterres Jeffman's avatar Rafael Guterres Jeffman
Browse files

Fix anomalous use of '\' in reguluar expression.

parent a12275bc
No related branches found
No related tags found
No related merge requests found
...@@ -65,7 +65,7 @@ else: ...@@ -65,7 +65,7 @@ else:
This will not work for `rc`, `dev` or similar version string. This will not work for `rc`, `dev` or similar version string.
""" """
return tuple(re.split("[-_\.]", version_str)) # noqa: W605 return tuple(re.split("[-_.]", version_str)) # noqa: W605
from ipalib import api from ipalib import api
from ipalib import errors as ipalib_errors # noqa from ipalib import errors as ipalib_errors # noqa
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment