From 88c747c9bbc3c1216a526cc65f9860354cdab0a4 Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Wed, 27 Mar 2013 15:02:40 -0400 Subject: sectionparser: Construct Subsections, not Sections Whoops! 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 330471b2..042a753f 100644 --- a/giscanner/sectionparser.py +++ b/giscanner/sectionparser.py @@ -68,7 +68,7 @@ def parse_sections_file(lines): match = re.match(line, r").*>") if match: - current_subsection = Section(match.groupdict['name']) + current_subsection = Subsection(match.groupdict['name']) current_section.subsections.append(current_subsection) continue -- cgit v1.2.1