diff options
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 43dd999c1..c7b73288e 100644 --- a/host/tests/devtest/usrp_probe.py +++ b/host/tests/devtest/usrp_probe.py @@ -17,7 +17,7 @@ def get_usrp_list(device_filter=None, env=None): cmd = ['uhd_find_devices'] if device_filter is not None: cmd += ['--args', device_filter] - output = subprocess.check_output(cmd, env=env) + output = subprocess.check_output(cmd, env=env, universal_newlines=True) except subprocess.CalledProcessError: return [] split_re = "\n*-+\n-- .*\n-+\n" |