summaryrefslogtreecommitdiffstats
path: root/test/send-ussd
diff options
context:
space:
mode:
Diffstat (limited to 'test/send-ussd')
-rwxr-xr-xtest/send-ussd4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/send-ussd b/test/send-ussd
index e5858836..a20e0987 100755
--- a/test/send-ussd
+++ b/test/send-ussd
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/python3
import sys
import dbus
@@ -46,7 +46,7 @@ if state == "idle":
print("State: %s" % (state))
while state == "user-response":
- response = raw_input("Enter response: ")
+ response = input("Enter response: ")
print(ussd.Respond(response, timeout=100))