Skip to content

Commit

Permalink
Fix invalid escape sequence warning
Browse files Browse the repository at this point in the history
  • Loading branch information
seancolsen committed Jan 6, 2025
1 parent 10178b5 commit 4558930
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mathesar_ui/src/i18n/scripts/resolve_dict_merge_conflicts.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ def get_dict_at_commit(commit):
with open(DICT_PATH, "r") as f:
for line in f:
if not current_rev:
match = re.search("^<<<<<<< (\w+)", line)
match = re.search(r"^<<<<<<< (\w+)", line)
if match:
current_rev = match.group(1)
continue
if not incoming_rev:
match = re.search("^>>>>>>> (\w+)", line)
match = re.search(r"^>>>>>>> (\w+)", line)
if match:
incoming_rev = match.group(1)
continue
Expand Down

0 comments on commit 4558930

Please sign in to comment.