Skip to content

Commit c0e90cc

Browse files
committed
Fix comment regex
1 parent 6c615cc commit c0e90cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/lib_updater.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ def iter_patch_entires(
146146
]:
147147
if COMMENT not in line:
148148
continue
149-
reason = "".join(re.findall(rf"{COMMENT} (.*)", line))
149+
reason = "".join(re.findall(rf"{COMMENT}.?(.*)", line))
150150
break
151151
else:
152152
continue

0 commit comments

Comments
 (0)