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.
This commit is contained in:
Martin Pitt
2014-03-11 17:39:18 +01:00
committed by Denis Kenzior
parent c54e4763f8
commit 0c1fcd2b50
86 changed files with 576 additions and 576 deletions

View File

@@ -13,7 +13,7 @@ else:
modems = manager.GetModems()
path = modems[0][0]
print "Enabling cell broadcast on modem %s..." % path
print("Enabling cell broadcast on modem %s..." % path)
cbs = dbus.Interface(bus.get_object('org.ofono', path),
'org.ofono.CellBroadcast')