diff options
Diffstat (limited to 'py/demo/Ice/callback/Server.py')
-rwxr-xr-x | py/demo/Ice/callback/Server.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/demo/Ice/callback/Server.py b/py/demo/Ice/callback/Server.py index bc1b3233b95..b048c253fc7 100755 --- a/py/demo/Ice/callback/Server.py +++ b/py/demo/Ice/callback/Server.py @@ -17,7 +17,7 @@ class CallbackSenderI(Demo.CallbackSender): def initiateCallback(self, proxy, current=None): print "initiating callback" try: - proxy.callback(current.ctx) + proxy.callback() except: traceback.print_exc() |