Use org.moblin instead of org.freedesktop
[connman] / test / start-scanning
index 712b3e9..b593323 100755 (executable)
@@ -4,16 +4,16 @@ import dbus
 
 bus = dbus.SystemBus()
 
-manager = dbus.Interface(bus.get_object('org.freedesktop.connman', "/"),
-                                       'org.freedesktop.connman.Manager')
+manager = dbus.Interface(bus.get_object('org.moblin.connman', "/"),
+                                       'org.moblin.connman.Manager')
 
 interfaces = manager.ListInterfaces()
 
 for path in interfaces:
        print "[ %s ]" % (path)
 
-       interface = dbus.Interface(bus.get_object('org.freedesktop.connman', path),
-                                       'org.freedesktop.connman.Interface')
+       interface = dbus.Interface(bus.get_object('org.moblin.connman', path),
+                                       'org.moblin.connman.Interface')
 
        properties = interface.GetProperties()