summaryrefslogtreecommitdiffstats
path: root/gi/module.py
diff options
context:
space:
mode:
Diffstat (limited to 'gi/module.py')
-rw-r--r--gi/module.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gi/module.py b/gi/module.py
index 61fbdfc..96d116f 100644
--- a/gi/module.py
+++ b/gi/module.py
@@ -127,7 +127,7 @@ class DynamicModule(object):
elif g_type.is_a(gobject.TYPE_POINTER) or g_type == gobject.TYPE_NONE:
bases = (Struct,)
else:
- raise TypeError, "unable to create a wrapper for %s.%s" % (info.get_namespace(), info.get_name())
+ raise TypeError("unable to create a wrapper for %s.%s" % (info.get_namespace(), info.get_name()))
metaclass = StructMeta
else:
raise NotImplementedError(info)