Skip to content

Commit

Permalink
fix Flake8 W605 - invalid escape sequence
Browse files Browse the repository at this point in the history
  • Loading branch information
neteler committed Sep 29, 2024
1 parent c39f086 commit 499f507
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/gitlog2changelog.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@
continue
# Collect the files for this commit. FIXME: Still need to add +/- to files
elif authorFound & dateFound & messageFound:
fileList = re.split(" \| ", line, 2)
fileList = re.split(r" \| ", line, 2)
if len(fileList) > 1:
if len(files) > 0:
files = files + ", " + fileList[0].strip()
Expand Down

0 comments on commit 499f507

Please sign in to comment.