summaryrefslogtreecommitdiff
path: root/giscanner/introspectablepass.py
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2010-09-01 15:38:36 -0400
committerColin Walters <walters@verbum.org>2010-09-01 15:38:36 -0400
commitd564c3b1d6fc48c99bfba57d2c0d567daf9f8a8f (patch)
tree19c8746f88f4bec1952b53cbb9b0391c7fb52a31 /giscanner/introspectablepass.py
parent003e799fbb501697b21446b716b9fead2d7c9875 (diff)
downloadgobject-introspection-d564c3b1d6fc48c99bfba57d2c0d567daf9f8a8f.tar.gz
scanner: Skipped nodes aren't introspectable either
Diffstat (limited to 'giscanner/introspectablepass.py')
-rw-r--r--giscanner/introspectablepass.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/giscanner/introspectablepass.py b/giscanner/introspectablepass.py
index 4d19ab30..f3ab7e65 100644
--- a/giscanner/introspectablepass.py
+++ b/giscanner/introspectablepass.py
@@ -137,7 +137,7 @@ class IntrospectablePass(object):
target = self._transformer.lookup_typenode(typeval)
if not target:
return False
- return target.introspectable
+ return target.introspectable and (not target.skip)
def _analyze_node(self, obj, stack):
if obj.skip: