summaryrefslogtreecommitdiff
path: root/py/modules/IcePy/Communicator.cpp
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2006-05-12 15:11:44 +0000
committerMark Spruiell <mes@zeroc.com>2006-05-12 15:11:44 +0000
commitc2ba1a66ff32456cfbd6e14fdf85befed7850960 (patch)
tree8540508c97052db9d7e1a17bea333eddc33d14e2 /py/modules/IcePy/Communicator.cpp
parentRemoved deprecation of stringToIdentity (diff)
downloadice-c2ba1a66ff32456cfbd6e14fdf85befed7850960.tar.bz2
ice-c2ba1a66ff32456cfbd6e14fdf85befed7850960.tar.xz
ice-c2ba1a66ff32456cfbd6e14fdf85befed7850960.zip
bug fix for identityToString
Diffstat (limited to 'py/modules/IcePy/Communicator.cpp')
-rw-r--r--py/modules/IcePy/Communicator.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/py/modules/IcePy/Communicator.cpp b/py/modules/IcePy/Communicator.cpp
index c55fe2c247e..e795baeef23 100644
--- a/py/modules/IcePy/Communicator.cpp
+++ b/py/modules/IcePy/Communicator.cpp
@@ -447,9 +447,9 @@ extern "C"
static PyObject*
communicatorIdentityToString(CommunicatorObject* self, PyObject* args)
{
- PyObject* identityType = IcePy::lookupType("Ice.Identity");
+ PyObject* identityType = lookupType("Ice.Identity");
PyObject* obj;
- if(!PyArg_ParseTuple(args, STRCAST("O!"), &identityType, &obj))
+ if(!PyArg_ParseTuple(args, STRCAST("O!"), identityType, &obj))
{
return NULL;
}