Skip to content

Commit

Permalink
Remove escape seq in lib handler
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanjm committed Jan 17, 2022
1 parent 7fc9ea9 commit 6024ce9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/library_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def parseVersion(versionString):
@ Out, version, list, list of components as integers and strings
"""
version = []
for part in re.split('([0-9]+|[a-z]+|\.)',versionString):
for part in re.split(r'([0-9]+|[a-z]+|\.)',versionString):
if len(part) == 0 or part == ".":
continue
try:
Expand Down

0 comments on commit 6024ce9

Please sign in to comment.