diff options
Diffstat (limited to 'test/mm-test.py')
-rwxr-xr-x | test/mm-test.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/mm-test.py b/test/mm-test.py index 8fc68ca3..8e8edcc4 100755 --- a/test/mm-test.py +++ b/test/mm-test.py @@ -59,8 +59,9 @@ def inspect_cdma(proxy, dump_private): print "ESN: %s" % esn try: - state = cdma.GetRegistrationState() - print "Registration: %s" % get_reg_state (state) + (cdma_1x_state, evdo_state) = cdma.GetRegistrationState() + print "1x State: %s" % get_reg_state (cdma_1x_state) + print "EVDO State: %s" % get_reg_state (evdo_state) except dbus.exceptions.DBusException, e: print "Error reading registration state: %s" % e |