aboutsummaryrefslogtreecommitdiff
path: root/test_client.py
diff options
context:
space:
mode:
Diffstat (limited to 'test_client.py')
-rwxr-xr-xtest_client.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/test_client.py b/test_client.py
index 850e8d3..0e78784 100755
--- a/test_client.py
+++ b/test_client.py
@@ -29,7 +29,9 @@ import dbus
bus = dbus.SessionBus()
-time = bus.get_object("org.ArcticaProject.RWASupportSessionService", "/RWASupportSessionService")
+api = bus.get_object("org.ArcticaProject.RWASupportSessionService", "/RWASupportSessionService")
-curr = time.start()
+hosts = api.get_web_app_hosts()
+print(hosts)
+curr = api.start(0)
print("Your VNC session is", curr)