summaryrefslogtreecommitdiffstats
path: root/test/reject-calls
diff options
context:
space:
mode:
Diffstat (limited to 'test/reject-calls')
-rwxr-xr-xtest/reject-calls4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/reject-calls b/test/reject-calls
index 405eb44f..9edf1fff 100755
--- a/test/reject-calls
+++ b/test/reject-calls
@@ -10,7 +10,7 @@ manager = dbus.Interface(bus.get_object('org.ofono', '/'),
modems = manager.GetModems()
for path, properties in modems:
- print "[ %s ]" % (path)
+ print("[ %s ]" % (path))
if "org.ofono.VoiceCallManager" not in properties["Interfaces"]:
continue
@@ -22,7 +22,7 @@ for path, properties in modems:
for path, properties in calls:
state = properties["State"]
- print "[ %s ] %s" % (path, state)
+ print("[ %s ] %s" % (path, state))
if state != "incoming":
continue