summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rwxr-xr-xtest/list-devices4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/list-devices b/test/list-devices
index 66af8bd3..691a6fbe 100755
--- a/test/list-devices
+++ b/test/list-devices
@@ -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)