From a1a513a7a6adc7685a88be910efc92dd81fa21c0 Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Wed, 27 Mar 2013 15:49:07 -0400 Subject: sectionparser: Fix subsection regex https://bugzilla.gnome.org/show_bug.cgi?id=699856 --- giscanner/sectionparser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/giscanner/sectionparser.py b/giscanner/sectionparser.py index 6230b5cc..273cdebe 100644 --- a/giscanner/sectionparser.py +++ b/giscanner/sectionparser.py @@ -66,7 +66,7 @@ def parse_sections_file(lines): current_section.title = match.groupdict['contents'] continue - match = re.match(r").*>", line) + match = re.match(r".*)>", line) if match: current_subsection = Subsection(match.groupdict['name']) current_section.subsections.append(current_subsection) -- cgit v1.2.1