X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=test%2Fshow-introspection;h=983b36fe5cf148631612852e13fda6e4480039c2;hb=dd3cccc5e67548dcc2dd6c6254ed6c97859085d5;hp=4b6450f0d0e2336c1feb093f23d617cccf36fef0;hpb=6b2381a2adabea7d8309ff158ef675ff88184305;p=platform%2Fupstream%2Fconnman.git diff --git a/test/show-introspection b/test/show-introspection index 4b6450f..983b36f 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())