diff options
Diffstat (limited to 'test')
-rwxr-xr-x | test/info.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/test/info.py b/test/info.py index 82057fa5..878adb75 100755 --- a/test/info.py +++ b/test/info.py @@ -47,8 +47,11 @@ def get_reg_state(state): def cdma_inspect(proxy, props): cdma = dbus.Interface(proxy, dbus_interface=MM_DBUS_INTERFACE_MODEM_CDMA) - esn = cdma.GetEsn() - print "ESN: %s" % esn + try: + esn = cdma.GetEsn() + print "ESN: %s" % esn + except dbus.exceptions.DBusException, e: + print "Error reading ESN: %s" % e try: (cdma_1x_state, evdo_state) = cdma.GetRegistrationState() |