Skip to content

Commit 616a880

Browse files
committed
Fix dev-tools/scripts/parseContributorsFromChanges.py
Python regexp syntax issue
1 parent e91e8dc commit 616a880

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dev-tools/scripts/parseContributorsFromChanges.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737

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

4343
# Find all contributors in the line

0 commit comments

Comments
 (0)