X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=test%2Fset-ipv6-method;h=5536e6f0eabee7eece0a59280f4ebbe0cb2a8eac;hb=dd3cccc5e67548dcc2dd6c6254ed6c97859085d5;hp=eb1f1b5b5fe490489c650c8c1464ce6d994c3cd3;hpb=6b2381a2adabea7d8309ff158ef675ff88184305;p=platform%2Fupstream%2Fconnman.git diff --git a/test/set-ipv6-method b/test/set-ipv6-method index eb1f1b5..5536e6f 100755 --- a/test/set-ipv6-method +++ b/test/set-ipv6-method @@ -10,7 +10,7 @@ def make_byte_variant(string): return dbus.Byte(int(string), variant_level=1) def print_usage(): - print "Usage: %s off|manual|auto [
[prefixlen] [gateway]] []" % (sys.argv[0]) + print("Usage: %s off|manual|auto [
[prefixlen] [gateway]] []" % (sys.argv[0])) if (len(sys.argv) < 3): print_usage() @@ -23,7 +23,7 @@ service = dbus.Interface(bus.get_object('net.connman', path), properties = service.GetProperties() -print "Setting method %s for %s" % (sys.argv[2], sys.argv[1]) +print("Setting method %s for %s" % (sys.argv[2], sys.argv[1])) ipv6_configuration = { "Method": make_variant(sys.argv[2])} if sys.argv[2] == "auto": @@ -38,6 +38,6 @@ else: ipv6_configuration["Gateway"] = make_variant(sys.argv[5]) service.SetProperty("IPv6.Configuration", ipv6_configuration) -print "New IPv6.Configuration: ", ipv6_configuration +print("New IPv6.Configuration: ", ipv6_configuration) -print +print()