summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gi/types.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gi/types.py b/gi/types.py
index 34d25496..9b250b16 100644
--- a/gi/types.py
+++ b/gi/types.py
@@ -52,7 +52,7 @@ def Function(info):
def NativeVFunc(info, cls):
def native_vfunc(*args):
- return info.invoke(*args, gtype=cls.__gtype__)
+ return info.invoke(*args, **dict(gtype=cls.__gtype__))
native_vfunc.__info__ = info
native_vfunc.__name__ = info.get_name()
native_vfunc.__module__ = info.get_namespace()