summaryrefslogtreecommitdiffstats
path: root/test/test-ss
diff options
context:
space:
mode:
authorMartin Pitt <martin.pitt@ubuntu.com>2014-03-11 17:39:18 +0100
committerDenis Kenzior <denkenz@gmail.com>2014-03-11 19:32:18 -0500
commit0c1fcd2b50908bda607fce70c796033e33832b11 (patch)
tree05af7c047cdb39229efd344bba4aa2198ea9105c /test/test-ss
parentc54e4763f8f4f6239a778994cf68f077ad2b170d (diff)
downloadofono-0c1fcd2b50908bda607fce70c796033e33832b11.tar.bz2
test: Make print calls compatible with Python 3
Turn print calls into print() function calls and avoid using comma-separated arguments, so that they work and look the same with both Python 2 and 3.
Diffstat (limited to 'test/test-ss')
-rwxr-xr-xtest/test-ss16
1 files changed, 8 insertions, 8 deletions
diff --git a/test/test-ss b/test/test-ss
index d5488d74..7bd18af8 100755
--- a/test/test-ss
+++ b/test/test-ss
@@ -23,20 +23,20 @@ ss = dbus.Interface(bus.get_object('org.ofono', modem),
try:
ss_type, properties = ss.Initiate(ss_code, timeout=100)
except dbus.DBusException, e:
- print "Unable to perform operation: ", e
+ print("Unable to perform operation: %s" % e)
sys.exit(1);
if (ss_type == "CallBarring"):
- print "%s : Operation [ %s ] Service Type [ %s ]" % (ss_type, properties[0], properties[1])
+ print("%s : Operation [ %s ] Service Type [ %s ]" % (ss_type, properties[0], properties[1]))
for key in properties[2]:
- print "%s : %s" % (key, properties[2][key])
+ print("%s : %s" % (key, properties[2][key]))
elif (ss_type == "CallForwarding"):
- print "%s : Operation [ %s ] Service Type [ %s ]" % (ss_type, properties[0], properties[1])
+ print("%s : Operation [ %s ] Service Type [ %s ]" % (ss_type, properties[0], properties[1]))
for key in properties[2]:
- print "%s : %s" % (key, properties[2][key])
+ print("%s : %s" % (key, properties[2][key]))
elif (ss_type == "CallWaiting"):
- print "%s : Operation [ %s ]" % (ss_type, properties[0])
+ print("%s : Operation [ %s ]" % (ss_type, properties[0]))
for key in properties[1]:
- print "%s : %s" % (key, properties[1][key])
+ print("%s : %s" % (key, properties[1][key]))
else:
- print "%s : Operation [ %s ] Status [ %s ]" % (ss_type, properties[0], properties[1])
+ print("%s : Operation [ %s ] Status [ %s ]" % (ss_type, properties[0], properties[1]))