Skip to content

Commit

Permalink
Fix dev-tools/scripts/parseContributorsFromChanges.py
Browse files Browse the repository at this point in the history
Python regexp syntax issue
  • Loading branch information
dsmiley committed Jan 22, 2025
1 parent e91e8dc commit 616a880
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev-tools/scripts/parseContributorsFromChanges.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@

for para in paras:
# Normalize whitespace (replace all whitespace with a single space)
para = re.sub('\s+', ' ', para).strip()
para = re.sub(r"\s+", ' ', para).strip()
#print(f'> {para}')

# Find all contributors in the line
Expand Down

0 comments on commit 616a880

Please sign in to comment.