X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=test%2Fdisable-tethering;h=41f3d798567e3319019f53625da6e98a89079c48;hb=e5cb500cd0a676f693b1503ac59eae08fe0c05c2;hp=a3d5908c35d9fd30fddebf14158208e995d6092d;hpb=a74d79da279e59fa4826c5dca880e50774f44f1a;p=platform%2Fupstream%2Fconnman.git diff --git a/test/disable-tethering b/test/disable-tethering index a3d5908..41f3d79 100755 --- a/test/disable-tethering +++ b/test/disable-tethering @@ -4,7 +4,7 @@ import sys import dbus if (len(sys.argv) != 2): - print "Usage: %s type" % (sys.argv[0]) + print("Usage: %s type" % (sys.argv[0])) sys.exit(1) bus = dbus.SystemBus() @@ -18,10 +18,10 @@ def technology_disable_tethering(path, tech_type): properties = tech.GetProperties() - for key in properties.keys(): + for key in list(properties.keys()): if key in ["Type"]: if properties[key] == tech_type: - print "Disabling %s tethering" % tech_type + print("Disabling %s tethering" % tech_type) tech.SetProperty("Tethering", dbus.Boolean(0)) return tech_type @@ -37,4 +37,4 @@ for path,_ in technologies: break; if tech == None: - print "Failed to disable %s tethering" % (sys.argv[1]) + print("Failed to disable %s tethering" % (sys.argv[1]))