aboutsummaryrefslogtreecommitdiffstats
path: root/host/utils/usrp_n2xx_net_burner.py
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2012-04-13 07:49:50 -0700
committerJosh Blum <josh@joshknows.com>2012-04-13 07:49:50 -0700
commitaf9db955eded5fc65ef1655f2404941f58b2612b (patch)
tree74981acc96d09405827a537dbfe11c71fa879166 /host/utils/usrp_n2xx_net_burner.py
parent93d4a16f3b0b5f7ae20fa8852b2d659d0f8d0091 (diff)
parent44b68ee80adbfc70869a5fc20ec93c4843f039e0 (diff)
downloaduhd-af9db955eded5fc65ef1655f2404941f58b2612b.tar.gz
uhd-af9db955eded5fc65ef1655f2404941f58b2612b.tar.bz2
uhd-af9db955eded5fc65ef1655f2404941f58b2612b.zip
Merge branch 'maint'
Diffstat (limited to 'host/utils/usrp_n2xx_net_burner.py')
-rwxr-xr-xhost/utils/usrp_n2xx_net_burner.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/host/utils/usrp_n2xx_net_burner.py b/host/utils/usrp_n2xx_net_burner.py
index 31c94405b..ae6219524 100755
--- a/host/utils/usrp_n2xx_net_burner.py
+++ b/host/utils/usrp_n2xx_net_burner.py
@@ -134,7 +134,7 @@ def command(*args):
stderr=subprocess.STDOUT,
)
ret = p.wait()
- verbose = p.stdout.read().decode()
+ verbose = p.stdout.read().decode('utf-8', errors='ignore')
if ret != 0: raise Exception(verbose)
return verbose