Skip to content

Commit

Permalink
Fix invalid escape sequence warning
Browse files Browse the repository at this point in the history
  • Loading branch information
drojf committed Jan 25, 2024
1 parent 9e57ea9 commit 5eb74fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ def get_chapter_name_and_translation_from_git_tag():
)
else:
# Look for the chapter name to build in the git tag
tag_fragments = [x.lower() for x in re.split("[\W_]", GIT_REF)]
tag_fragments = [x.lower() for x in re.split(r"[\W_]", GIT_REF)]

if "all" in tag_fragments:
returned_chapter_name = "all"
Expand Down

0 comments on commit 5eb74fb

Please sign in to comment.