aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--htmlchangelog.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/htmlchangelog.py b/htmlchangelog.py
index 19abdec..c4de291 100644
--- a/htmlchangelog.py
+++ b/htmlchangelog.py
@@ -10,7 +10,7 @@ _TEMPLATEDIR='templates/'
class HTMLChangelogFilter(object):
commit_id_res = [ re.compile(r"(?P<s>\s+\*\s+\[)" # as generated by git-dch
+r"(?P<commitid>[a-fA-F0-9]{7,40})"
- +r"(?P<e>\]\s+.*)"),
+ +r"(?P<e>\]:?\s+.*)"),
re.compile(r"(?P<s>\s+-\s+)" # drm-snapshot uses this
+r"(?P<commitid>[a-fA-F0-9]{7,40})"
+r"(?P<e>\.\.\.\s+.*)"),