Use correct object name for device element
[connman] / test / list-devices
index 66af8bd..691a6fb 100755 (executable)
@@ -10,10 +10,10 @@ manager = dbus.Interface(bus.get_object("org.moblin.connman", "/"),
 properties = manager.GetProperties()
 
 for path in properties["Devices"]:
-       element = dbus.Interface(bus.get_object("org.moblin.connman", path),
+       device = dbus.Interface(bus.get_object("org.moblin.connman", path),
                                                "org.moblin.connman.Device")
 
-       properties = element.GetProperties()
+       properties = device.GetProperties()
 
        print "[ %s ]" % (path)