Files
ofono/test/hangup-call
Martin Pitt c027ab9fbc test: Convert to Python 3
Change raw_input() to input() and unicode to str. This is *not*
compatible with Python 2. Update the hashbangs to run with Python 3.
2014-03-11 19:34:08 -05:00

15 lines
263 B
Python
Executable File

#!/usr/bin/python3
import sys
import dbus
bus = dbus.SystemBus()
if (len(sys.argv) < 2):
print("Usage: %s [ Call Path ]" % (sys.argv[0]))
sys.exit(1)
call = dbus.Interface(bus.get_object('org.ofono', sys.argv[1]),
'org.ofono.VoiceCall')
call.Hangup()