summaryrefslogtreecommitdiff
path: root/test/set-ipv6-method
diff options
context:
space:
mode:
authorDaniel Wagner <wagi@monom.org>2020-02-10 09:07:34 +0100
committerDaniel Wagner <wagi@monom.org>2020-02-10 09:12:58 +0100
commit55965561d3b6acb40777116869276c6e74563c42 (patch)
treee8b3593e1d92563c1d2e11ee8eb00e0368d0dd14 /test/set-ipv6-method
parent575190f39709a19bd913d44584b4bdcd34b3b593 (diff)
downloadconnman-55965561d3b6acb40777116869276c6e74563c42.tar.gz
test: Update all Python script to version 3
Python2 is EOL, it's time to update our test script to run with Python3. The conversion was done using 2to3 and most of the scripts will run with both versions. Since most of the transformation is about updating the print commands. Only a quick smoke test was done.
Diffstat (limited to 'test/set-ipv6-method')
-rwxr-xr-xtest/set-ipv6-method8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/set-ipv6-method b/test/set-ipv6-method
index eb1f1b5b..5536e6f0 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 <service> off|manual|auto [<address> [prefixlen] [gateway]] [<privacy>]" % (sys.argv[0])
+ print("Usage: %s <service> off|manual|auto [<address> [prefixlen] [gateway]] [<privacy>]" % (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()