Change raw_input() to input() and unicode to str. This is *not* compatible with Python 2. Update the hashbangs to run with Python 3.
		
			
				
	
	
		
			15 lines
		
	
	
		
			263 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			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()
 |