diff options
author | Colin Walters <walters@src.gnome.org> | 2008-08-31 16:16:42 +0000 |
---|---|---|
committer | Colin Walters <walters@src.gnome.org> | 2008-08-31 16:16:42 +0000 |
commit | 1d67f33987f2e179a64551db8af9c12f302d164c (patch) | |
tree | 18cfde14ea7a06ec1387c018b8dca244e7e6a6fc /giscanner | |
parent | 0745eb0c9920523471afedf058de4fdee573e1b1 (diff) | |
download | gobject-introspection-1d67f33987f2e179a64551db8af9c12f302d164c.tar.gz |
Tweak error message
svn path=/trunk/; revision=554
Diffstat (limited to 'giscanner')
-rw-r--r-- | giscanner/glibtransformer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/giscanner/glibtransformer.py b/giscanner/glibtransformer.py index b01505d6..1f316319 100644 --- a/giscanner/glibtransformer.py +++ b/giscanner/glibtransformer.py @@ -359,7 +359,7 @@ class GLibTransformer(object): if not is_method: # Interfaces can't have constructors, punt to global scope if isinstance(klass, GLibInterface): - print "NOTE: Rejecting method or constructor for"+\ + print "NOTE: Rejecting constructor for"+\ " interface type: %r" % (func.symbol, ) return None # TODO - check that the return type is a subclass of the |