diff options
Diffstat (limited to 'python/test/Ice/custom/Server.py')
-rwxr-xr-x | python/test/Ice/custom/Server.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/test/Ice/custom/Server.py b/python/test/Ice/custom/Server.py index c208c67b89f..46d1a70cda0 100755 --- a/python/test/Ice/custom/Server.py +++ b/python/test/Ice/custom/Server.py @@ -93,7 +93,7 @@ def run(args, communicator): communicator.getProperties().setProperty("TestAdapter.Endpoints", "default -p 12010") adapter = communicator.createObjectAdapter("TestAdapter") object = CustomI() - adapter.add(object, communicator.stringToIdentity("test")) + adapter.add(object, Ice.stringToIdentity("test")) adapter.activate() communicator.waitForShutdown() return True |