From fa3d8e86eefd45439538ade9a2732b6504e5680b Mon Sep 17 00:00:00 2001 From: Guido Günther Date: Sun, 25 Jan 2009 13:02:10 +0100 Subject: also allow for a collon after [commitid] Manoj uses this in newer changelog entries --- htmlchangelog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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+\[)" # as generated by git-dch +r"(?P[a-fA-F0-9]{7,40})" - +r"(?P\]\s+.*)"), + +r"(?P\]:?\s+.*)"), re.compile(r"(?P\s+-\s+)" # drm-snapshot uses this +r"(?P[a-fA-F0-9]{7,40})" +r"(?P\.\.\.\s+.*)"), -- cgit v1.2.3