diff options
author | Jasper St. Pierre <jstpierre@mecheye.net> | 2013-03-27 15:03:11 -0400 |
---|---|---|
committer | Jasper St. Pierre <jstpierre@mecheye.net> | 2013-05-07 13:48:48 -0400 |
commit | 6c6b787aeb7d2ac08f37c93e6d1c16318d8ec29c (patch) | |
tree | 25231240eb702dff69c6124cf47df9b5e2aeb871 /giscanner/sectionparser.py | |
parent | af0158ebabd6e2ceca4e33a9ab8d391025936dd1 (diff) | |
download | gobject-introspection-6c6b787aeb7d2ac08f37c93e6d1c16318d8ec29c.tar.gz |
sectionparser: Rename
It's called a sections file, not a section file.
https://bugzilla.gnome.org/show_bug.cgi?id=699856
Diffstat (limited to 'giscanner/sectionparser.py')
-rw-r--r-- | giscanner/sectionparser.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/giscanner/sectionparser.py b/giscanner/sectionparser.py index f66d46ac..85ef3a2e 100644 --- a/giscanner/sectionparser.py +++ b/giscanner/sectionparser.py @@ -19,7 +19,7 @@ import re -class SectionFile(object): +class SectionsFile(object): def __init__(self, sections): self.sections = sections @@ -74,4 +74,4 @@ def parse_sections_file(lines): current_subsection.symbols.append(line) - return SectionFile(sections) + return SectionsFile(sections) |