summaryrefslogtreecommitdiff
path: root/giscanner/girparser.py
diff options
context:
space:
mode:
Diffstat (limited to 'giscanner/girparser.py')
-rw-r--r--giscanner/girparser.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/giscanner/girparser.py b/giscanner/girparser.py
index 7858342f..50d21cb1 100644
--- a/giscanner/girparser.py
+++ b/giscanner/girparser.py
@@ -50,7 +50,9 @@ class GIRParser(object):
self._parse_object(child)
elif child.tag in [_corens('callback'),
_corens('function'),
- _corens('record')]:
+ _corens('record'),
+ _corens('enumeration'),
+ ]:
continue
else:
print 'PARSER: Unhandled %s' % (child.tag,)