test: don't bail out on errors parsing CDMA serving system results
This commit is contained in:
@@ -1,4 +1,5 @@
|
|||||||
#!/usr/bin/python
|
#!/usr/bin/python
|
||||||
|
# -*- Mode: python; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
||||||
#
|
#
|
||||||
# This program is free software; you can redistribute it and/or modify
|
# This program is free software; you can redistribute it and/or modify
|
||||||
# it under the terms of the GNU General Public License as published by
|
# it under the terms of the GNU General Public License as published by
|
||||||
@@ -46,10 +47,14 @@ def inspect_cdma(proxy, dump_private):
|
|||||||
|
|
||||||
print "ESN: %s" % esn
|
print "ESN: %s" % esn
|
||||||
print "-------------------"
|
print "-------------------"
|
||||||
info = cdma.GetServingSystem()
|
|
||||||
print "Class: %s" % get_cdma_band_class(info[0])
|
try:
|
||||||
print "Band: %s" % info[1]
|
info = cdma.GetServingSystem()
|
||||||
print "SID: %d" % info[2]
|
print "Class: %s" % get_cdma_band_class(info[0])
|
||||||
|
print "Band: %s" % info[1]
|
||||||
|
print "SID: %d" % info[2]
|
||||||
|
except dbus.exceptions.DBusException, e:
|
||||||
|
print "Error reading serving system: %s" % e
|
||||||
|
|
||||||
|
|
||||||
def get_gsm_network_mode(modem):
|
def get_gsm_network_mode(modem):
|
||||||
|
Reference in New Issue
Block a user