diff options
author | Trung N Tran <trung.tran@ettus.com> | 2018-05-02 11:44:43 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2018-05-02 12:02:43 -0700 |
commit | c52c0b69fc151c7596f9754e6b1e40dede531134 (patch) | |
tree | 676fac121d186df722ee55f8fbb15bf68d35e36e /host/tests/devtest/usrp_probe.py | |
parent | 181065f4fffe8d873157a4f46e6c7634849dd918 (diff) | |
download | uhd-c52c0b69fc151c7596f9754e6b1e40dede531134.tar.gz uhd-c52c0b69fc151c7596f9754e6b1e40dede531134.tar.bz2 uhd-c52c0b69fc151c7596f9754e6b1e40dede531134.zip |
dev_test: add N3xx devtest
Diffstat (limited to 'host/tests/devtest/usrp_probe.py')
-rw-r--r-- | host/tests/devtest/usrp_probe.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/tests/devtest/usrp_probe.py b/host/tests/devtest/usrp_probe.py index 64d04f0d2..53d971707 100644 --- a/host/tests/devtest/usrp_probe.py +++ b/host/tests/devtest/usrp_probe.py @@ -26,7 +26,7 @@ def get_usrp_list(device_filter=None, env=None): if not re.match("Device Address", uhd_string): continue this_result = {k: v for k, v in re.findall(" ([a-z]+): (.*)", uhd_string)} - if (this_result.get('reachable',None)) == "No": + if this_result.get('reachable') == "No": continue args_string = "" try: |