summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--giscanner/sectionparser.py2
1 files changed, 1 insertions, 1 deletions
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"<SUBSECTION (?P<name>).*>", line)
+ match = re.match(r"<SUBSECTION (?P<name>.*)>", line)
if match:
current_subsection = Subsection(match.groupdict['name'])
current_section.subsections.append(current_subsection)