aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorDan Williams <dcbw@redhat.com>2012-05-30 12:11:25 -0500
committerDan Williams <dcbw@redhat.com>2012-05-30 12:11:25 -0500
commit99b877ee6834fd41f57a9fd768d03f7319822de1 (patch)
tree8f132b9e5cf02ac2b82e53094873f1cfb0132b00 /test
parentfcc4903a839a9b953ee2a9b2a2156c1ba50c4f1d (diff)
test: ignore ESN errors in info.py
Diffstat (limited to 'test')
-rwxr-xr-xtest/info.py7
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()