aboutsummaryrefslogtreecommitdiff
path: root/devscripts/make_changelog.py
diff options
context:
space:
mode:
authorbashonly <88596187+bashonly@users.noreply.github.com>2023-09-23 15:00:31 -0500
committerGitHub <noreply@github.com>2023-09-23 20:00:31 +0000
commit5ca095cbcde3e32642a4fe5b2d69e8e3c785a021 (patch)
treed238e3e1c8ad4100a16b781678aaec712b954ac5 /devscripts/make_changelog.py
parentc2da0b5ea215298135f76e3dc14b972a3c4afacb (diff)
[cleanup] Misc (#8182)
Closes #7796, Closes #8028 Authored by: barsnick, sqrtNOT, gamer191, coletdjnz, Grub4K, bashonly
Diffstat (limited to 'devscripts/make_changelog.py')
-rw-r--r--devscripts/make_changelog.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/devscripts/make_changelog.py b/devscripts/make_changelog.py
index ac68dcd19..9ff65db14 100644
--- a/devscripts/make_changelog.py
+++ b/devscripts/make_changelog.py
@@ -260,7 +260,7 @@ class CommitRange:
AUTHOR_INDICATOR_RE = re.compile(r'Authored by:? ', re.IGNORECASE)
MESSAGE_RE = re.compile(r'''
(?:\[(?P<prefix>[^\]]+)\]\ )?
- (?:(?P<sub_details>`?[^:`]+`?): )?
+ (?:(?P<sub_details>`?[\w.-]+`?): )?
(?P<message>.+?)
(?:\ \((?P<issues>\#\d+(?:,\ \#\d+)*)\))?
''', re.VERBOSE | re.DOTALL)