diff options
author | Thomas Schwinge <tschwinge@baylibre.com> | 2024-03-11 00:33:08 +0100 |
---|---|---|
committer | Thomas Schwinge <tschwinge@baylibre.com> | 2024-03-11 00:33:08 +0100 |
commit | ddbb4d3a4145bd5b05ca23dd5dfb562ecab1f512 (patch) | |
tree | 2ec5e21002d747d770a76fb4997c669eabb2b1d7 | |
parent | b2ccc44dfb39775de889ed45d2ebd843ec2abe75 (diff) | |
parent | f3f6ff7b16861cd0651eccff14689536550762ae (diff) | |
download | gcc-ddbb4d3a4145bd5b05ca23dd5dfb562ecab1f512.zip gcc-ddbb4d3a4145bd5b05ca23dd5dfb562ecab1f512.tar.gz gcc-ddbb4d3a4145bd5b05ca23dd5dfb562ecab1f512.tar.bz2 |
Merge commit 'f3f6ff7b16861cd0651eccff14689536550762ae' into HEAD [#2414]
-rwxr-xr-x | contrib/mklog.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/mklog.py b/contrib/mklog.py index 705a848..effe5aa1 100755 --- a/contrib/mklog.py +++ b/contrib/mklog.py @@ -68,7 +68,7 @@ TAB_WIDTH = 8 # +--------------------------------------------------+ # this regex matches the first line of the "end" in the initial commit message -FIRST_LINE_OF_END_RE = re.compile('(?i)^(signed-off-by:|co-authored-by:|#) ') +FIRST_LINE_OF_END_RE = re.compile('(?i)^(signed-off-by:|co-authored-by:|#)') pr_regex = re.compile(r'(\/(\/|\*)|[Cc*!])\s+(?P<pr>PR [a-z+-]+\/[0-9]+)') prnum_regex = re.compile(r'PR (?P<comp>[a-z+-]+)/(?P<num>[0-9]+)') |