diff options
author | Brent Eagles <brent@zeroc.com> | 2005-10-14 18:03:29 +0000 |
---|---|---|
committer | Brent Eagles <brent@zeroc.com> | 2005-10-14 18:03:29 +0000 |
commit | 7ce47a21178fdb9e2867e41449a5eb0f24c99344 (patch) | |
tree | 74e254bf8a8500fa9dadeadc40a512401d3e1201 /py/demo/Ice/hello/Client.py | |
parent | Added IceGrid simple demo. (diff) | |
download | ice-7ce47a21178fdb9e2867e41449a5eb0f24c99344.tar.bz2 ice-7ce47a21178fdb9e2867e41449a5eb0f24c99344.tar.xz ice-7ce47a21178fdb9e2867e41449a5eb0f24c99344.zip |
fixing bug in batch flush in client
Diffstat (limited to 'py/demo/Ice/hello/Client.py')
-rw-r--r-- | py/demo/Ice/hello/Client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/demo/Ice/hello/Client.py b/py/demo/Ice/hello/Client.py index dcd9412b071..89c6cc35ecb 100644 --- a/py/demo/Ice/hello/Client.py +++ b/py/demo/Ice/hello/Client.py @@ -76,7 +76,7 @@ class Client(Ice.Application): else: batchDatagram.sayHello() elif c == 'f': - communicator.flushBatchRequests() + self.communicator().flushBatchRequests() elif c == 'T': if timeout == -1: timeout = 2000 |