summaryrefslogtreecommitdiff
path: root/python/modules/IcePy/Communicator.cpp
diff options
context:
space:
mode:
authorJoe George <joe@zeroc.com>2015-12-17 09:58:11 -0500
committerJoe George <joe@zeroc.com>2015-12-17 10:27:29 -0500
commit1ea2a111f3a0871b197e41750a0805d52b8eaa0a (patch)
treef181a7cfe3f835d4377b52bdeabebff3b6f97806 /python/modules/IcePy/Communicator.cpp
parentC++11 mapping test updates (diff)
downloadice-1ea2a111f3a0871b197e41750a0805d52b8eaa0a.tar.bz2
ice-1ea2a111f3a0871b197e41750a0805d52b8eaa0a.tar.xz
ice-1ea2a111f3a0871b197e41750a0805d52b8eaa0a.zip
ICE-6897 - Python and Objective-C ValueFactory
- ValueFactory's are now functions/lambdas in Python and blocks in Objective-C
Diffstat (limited to 'python/modules/IcePy/Communicator.cpp')
-rw-r--r--python/modules/IcePy/Communicator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/modules/IcePy/Communicator.cpp b/python/modules/IcePy/Communicator.cpp
index df7d2282927..1492c24c1ee 100644
--- a/python/modules/IcePy/Communicator.cpp
+++ b/python/modules/IcePy/Communicator.cpp
@@ -1213,7 +1213,7 @@ extern "C"
static PyObject*
communicatorAddValueFactory(CommunicatorObject* self, PyObject* args)
{
- PyObject* factoryType = lookupType("Ice.ValueFactory");
+ PyObject* factoryType = lookupType("types.FunctionType");
assert(factoryType);
PyObject* factory;