From 5d6113aaa0595a8eb7f3263c5679b2bd069f95ba Mon Sep 17 00:00:00 2001 From: Seth Nickell Date: Sat, 29 May 2004 22:37:13 +0000 Subject: 2004-05-29 Seth Nickell * python/dbus.py: * python/examples/example-client.py: * python/examples/example-service.py: * python/examples/list-system-services.py: Add SessionBus, SystemBus and ActivationBus classes so you don't need to know the special little BUS_TYPE flag. --- python/examples/example-service.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'python/examples/example-service.py') diff --git a/python/examples/example-service.py b/python/examples/example-service.py index 79fb009d..d1460802 100644 --- a/python/examples/example-service.py +++ b/python/examples/example-service.py @@ -11,8 +11,8 @@ class SomeObject(dbus.Object): print (hello_message) return "Hello from example-service.py" - -service = dbus.Service("org.designfu.SampleService") +session_bus = dbus.SessionBus() +service = dbus.Service("org.designfu.SampleService", bus=session_bus) object = SomeObject(service) gtk.main() -- cgit