diff options
Diffstat (limited to 'test/mm-test.py')
-rwxr-xr-x | test/mm-test.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/mm-test.py b/test/mm-test.py index 157fb0ec..a0af8419 100755 --- a/test/mm-test.py +++ b/test/mm-test.py @@ -224,10 +224,12 @@ def gsm_inspect(proxy, dump_private, do_scan): except KeyError: pass - if len(r['operator-long']): + if r.has_key('operator-long') and len(r['operator-long']): print "%s: %s %s" % (r['operator-long'], status, access_tech) - else: + elif r.has_key('operator-short') and len(r['operator-short']): print "%s: %s %s" % (r['operator-short'], status, access_tech) + else: + print "%s: %s %s" % (r['operator-num'], status, access_tech) def gsm_connect(proxy, apn, user, password): # Modem.Simple interface |