summaryrefslogtreecommitdiffstats
path: root/test/simple-service
diff options
context:
space:
mode:
Diffstat (limited to 'test/simple-service')
-rwxr-xr-xtest/simple-service8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/simple-service b/test/simple-service
index 5279a3a6..d03ec3db 100755
--- a/test/simple-service
+++ b/test/simple-service
@@ -109,10 +109,10 @@ if len(sys.argv) > 1:
else:
path = manager.DefaultAdapter()
-adapter = dbus.Interface(bus.get_object("org.bluez", path),
- "org.bluez.Adapter")
+service = dbus.Interface(bus.get_object("org.bluez", path),
+ "org.bluez.Service")
-handle = adapter.AddServiceRecord(xml)
+handle = service.AddRecord(xml)
print "Service record with handle 0x%04x added" % (handle)
@@ -124,4 +124,4 @@ try:
except:
pass
-adapter.RemoveServiceRecord(dbus.UInt32(handle))
+service.RemoveRecord(dbus.UInt32(handle))