From 7dc64ab60a704755551c47f3c5c3bf219badae68 Mon Sep 17 00:00:00 2001 From: Seth Nickell Date: Sun, 30 May 2004 06:26:24 +0000 Subject: 2004-05-30 Seth Nickell * python/examples/example-client.py: * python/examples/example-service.py: Take it back. Lists seem to work but they're broken in the test suite. Make the base examples use lists (works fine). --- python/examples/example-client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'python/examples/example-client.py') diff --git a/python/examples/example-client.py b/python/examples/example-client.py index c1393ecc..b3b22f56 100644 --- a/python/examples/example-client.py +++ b/python/examples/example-client.py @@ -7,6 +7,6 @@ remote_service = bus.get_service("org.designfu.SampleService") remote_object = remote_service.get_object("/SomeObject", "org.designfu.SampleInterface") -hello_reply = remote_object.HelloWorld("Hello from example-client.py!") +hello_reply_list = remote_object.HelloWorld("Hello from example-client.py!") -print (hello_reply) +print (hello_reply_list) -- cgit