diff options
Diffstat (limited to 'test/show-introspection')
-rwxr-xr-x | test/show-introspection | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/show-introspection b/test/show-introspection index 4b6450f0..983b36fe 100755 --- a/test/show-introspection +++ b/test/show-introspection @@ -7,7 +7,7 @@ bus = dbus.SystemBus() object = dbus.Interface(bus.get_object("net.connman", '/'), "org.freedesktop.DBus.Introspectable") -print object.Introspect() +print(object.Introspect()) manager = dbus.Interface(bus.get_object("net.connman", "/"), "net.connman.Manager") @@ -18,4 +18,4 @@ for path, properties in technologies: object = dbus.Interface(bus.get_object("net.connman", path), "org.freedesktop.DBus.Introspectable") - print object.Introspect() + print(object.Introspect()) |