summaryrefslogtreecommitdiffstats
path: root/python/examples/example-client.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/examples/example-client.py')
-rw-r--r--python/examples/example-client.py4
1 files changed, 2 insertions, 2 deletions
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)