summaryrefslogtreecommitdiff
path: root/giscanner
diff options
context:
space:
mode:
authorTomeu Vizoso <tomeu@sugarlabs.org>2009-10-22 12:43:15 +0100
committerColin Walters <walters@verbum.org>2009-10-22 23:16:16 -0400
commite71f8ff46b39d32cd68464265bd8990dc1230f43 (patch)
treeb50dcadb1124d46a205064e662ae1846c1d69ac3 /giscanner
parent0d9cfb004d528fd0a7a0b05943db3b2097d8a085 (diff)
downloadgobject-introspection-e71f8ff46b39d32cd68464265bd8990dc1230f43.tar.gz
Fix make check after 0d9cfb004d528
https://bugzilla.gnome.org/show_bug.cgi?id=599327
Diffstat (limited to 'giscanner')
-rw-r--r--giscanner/glibtransformer.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/giscanner/glibtransformer.py b/giscanner/glibtransformer.py
index 76085c1a..c58644b0 100644
--- a/giscanner/glibtransformer.py
+++ b/giscanner/glibtransformer.py
@@ -255,7 +255,7 @@ class GLibTransformer(object):
self._names)
except KeyError, e:
return Unresolved(gtype_name)
-
+
def _resolve_gtypename_chain(self, gtype_names):
"""Like _resolve_gtypename, but grab the first one that resolves.
If none of them do, return an Unresolved for the first."""
@@ -700,7 +700,7 @@ class GLibTransformer(object):
return
# Get a list of parents here; some of them may be hidden, and what
# we really want to do is use the most-derived one that we know of.
- #
+ #
parent_type_names = xmlnode.attrib['parents'].split(',')
parent_gitype = self._resolve_gtypename_chain(parent_type_names)
is_abstract = not not xmlnode.attrib.get('abstract', False)