mirror of
https://github.com/sailfishos/ofono
synced 2025-12-02 07:31:04 +08:00
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:
committed by
Denis Kenzior
parent
c54e4763f8
commit
0c1fcd2b50
@@ -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')
|
||||
|
||||
|
||||
Reference in New Issue
Block a user