diff options
author | Mark Spruiell <mes@zeroc.com> | 2008-01-31 19:05:51 -0800 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2008-01-31 19:05:51 -0800 |
commit | 2c3770915174ad6f358b4ab82848f99bf464cb76 (patch) | |
tree | 14ed55dabd722e1f8e8b917c1be4de104d2b8f05 /py/test/Ice/slicing/exceptions/Server.py | |
parent | C# bug fix in Stream.cs (diff) | |
download | ice-2c3770915174ad6f358b4ab82848f99bf464cb76.tar.bz2 ice-2c3770915174ad6f358b4ab82848f99bf464cb76.tar.xz ice-2c3770915174ad6f358b4ab82848f99bf464cb76.zip |
bug 2264 - remove deprecated APIs
Diffstat (limited to 'py/test/Ice/slicing/exceptions/Server.py')
-rw-r--r-- | py/test/Ice/slicing/exceptions/Server.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/test/Ice/slicing/exceptions/Server.py b/py/test/Ice/slicing/exceptions/Server.py index 7e687617f12..49dbd158540 100644 --- a/py/test/Ice/slicing/exceptions/Server.py +++ b/py/test/Ice/slicing/exceptions/Server.py @@ -120,7 +120,7 @@ def run(args, communicator): properties.setProperty("TestAdapter.Endpoints", "default -p 12010 -t 10000") adapter = communicator.createObjectAdapter("TestAdapter") object = TestI(adapter) - adapter.add(object, Ice.stringToIdentity("Test")) + adapter.add(object, communicator.stringToIdentity("Test")) adapter.activate() communicator.waitForShutdown() return True |