diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2006-05-12 13:50:05 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2006-05-12 13:50:05 +0000 |
commit | 892bc25c813ced27f04bd872423109f0bd868b6f (patch) | |
tree | cda7ba37c46f0ba676f62c60975c30ef40fd7fa5 /py/python/Ice.py | |
parent | Fix bug 973 (diff) | |
download | ice-892bc25c813ced27f04bd872423109f0bd868b6f.tar.bz2 ice-892bc25c813ced27f04bd872423109f0bd868b6f.tar.xz ice-892bc25c813ced27f04bd872423109f0bd868b6f.zip |
Removed/fixed use of stringToIdentity. Fixed bug 973
Diffstat (limited to 'py/python/Ice.py')
-rw-r--r-- | py/python/Ice.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/py/python/Ice.py b/py/python/Ice.py index 268e7e4ed56..a076a1908d2 100644 --- a/py/python/Ice.py +++ b/py/python/Ice.py @@ -189,8 +189,8 @@ class CommunicatorI(Communicator): def stringToIdentity(self, str): return self._impl.stringToIdentity(str) - def identityToString(self, obj): - return self._impl.identityToString(obj) + def identityToString(self, ident): + return self._impl.identityToString(ident) def createObjectAdapter(self, name): adapter = self._impl.createObjectAdapter(name) |