summaryrefslogtreecommitdiffstats
path: root/python/examples/example-service.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/examples/example-service.py')
-rw-r--r--python/examples/example-service.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/examples/example-service.py b/python/examples/example-service.py
index ceb7f11d..974f8b1d 100644
--- a/python/examples/example-service.py
+++ b/python/examples/example-service.py
@@ -5,7 +5,7 @@ import gtk
class SomeObject(dbus.Object):
def __init__(self, service):
- dbus.Object.__init__(self, "/SomeObject", [self.HelloWorld], service)
+ dbus.Object.__init__(self, "/SomeObject", service, [self.HelloWorld])
def HelloWorld(self, hello_message):
print (hello_message)