diff options
author | Marc Laukien <marc@zeroc.com> | 2005-02-05 18:24:24 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2005-02-05 18:24:24 +0000 |
commit | 81494e5f4ae74610b1c0e78881b47f47ff96077b (patch) | |
tree | 476b021d5c84e01b0414a0c3c5c43c616f015b55 /py/demo/Ice/callback/Client.py | |
parent | connection->setAdapter and bidir demo (diff) | |
download | ice-81494e5f4ae74610b1c0e78881b47f47ff96077b.tar.bz2 ice-81494e5f4ae74610b1c0e78881b47f47ff96077b.tar.xz ice-81494e5f4ae74610b1c0e78881b47f47ff96077b.zip |
fixes
Diffstat (limited to 'py/demo/Ice/callback/Client.py')
-rw-r--r-- | py/demo/Ice/callback/Client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/demo/Ice/callback/Client.py b/py/demo/Ice/callback/Client.py index b0f9706f438..f28f7545bce 100644 --- a/py/demo/Ice/callback/Client.py +++ b/py/demo/Ice/callback/Client.py @@ -34,7 +34,7 @@ class CallbackReceiverI(Demo.CallbackReceiver): class CallbackClient(Ice.Application): def run(self, args): properties = self.communicator().getProperties() - proxyProperty = 'Callback.Client.Callback' + proxyProperty = 'Callback.Client.CallbackServer' proxy = properties.getProperty(proxyProperty) if len(proxy) == 0: print self.appName() + ": property `" + proxyProperty + "' not set" |