summaryrefslogtreecommitdiff
path: root/py/modules/IcePy/Proxy.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'py/modules/IcePy/Proxy.cpp')
-rw-r--r--py/modules/IcePy/Proxy.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/modules/IcePy/Proxy.cpp b/py/modules/IcePy/Proxy.cpp
index a16b0d601aa..d0be96ba14d 100644
--- a/py/modules/IcePy/Proxy.cpp
+++ b/py/modules/IcePy/Proxy.cpp
@@ -231,7 +231,7 @@ proxyIceIsA(ProxyObject* self, PyObject* args)
//
// We need to reformat the arguments to match what is used by the generated code: ((params...), ctx|None)
//
- PyObjectHandle newArgs = Py_BuildValue(STRCAST("((O), O)"), type, ctx);
+ PyObjectHandle newArgs = Py_BuildValue(STRCAST("((s), O)"), type, ctx);
return iceIsA(*self->proxy, newArgs.get());
}