summaryrefslogtreecommitdiffstats
path: root/python/examples/example-service.py
diff options
context:
space:
mode:
authorJohn (J5) Palmieri <johnp@redhat.com>2005-07-13 18:22:35 +0000
committerJohn (J5) Palmieri <johnp@redhat.com>2005-07-13 18:22:35 +0000
commit2c413bf281cefde85209e5a3847735407bedaaa4 (patch)
tree1ef436afb3d96b2089b3e5a0fcffd035b12eca1b /python/examples/example-service.py
parent9f92ac0ef5ae8ab5a325b15d0b3109143fe51f8c (diff)
* python/.cvsignore: remove dbus_bindings.pyx, add dbus_bindings.pxd
* python/service.py (class Name): renamed BusName to make it clearer what the object is for (a name on the bus) * python/examples/example-service.py, python/examples/example-signal-emitter.py: change the Name object to BusName
Diffstat (limited to 'python/examples/example-service.py')
-rw-r--r--python/examples/example-service.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/python/examples/example-service.py b/python/examples/example-service.py
index 9e2f193b..00f39935 100644
--- a/python/examples/example-service.py
+++ b/python/examples/example-service.py
@@ -2,8 +2,6 @@
import dbus
import dbus.service
-
-
import dbus.glib
import pygtk
import gtk
@@ -26,7 +24,7 @@ class SomeObject(dbus.service.Object):
return {"first": "Hello Dict", "second": " from example-service.py"}
session_bus = dbus.SessionBus()
-name = dbus.service.Name("org.designfu.SampleService", bus=session_bus)
+name = dbus.service.BusName("org.designfu.SampleService", bus=session_bus)
object = SomeObject(name)
gtk.main()