diff options
author | Josh Blum <josh@joshknows.com> | 2012-04-22 15:41:22 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2012-04-22 15:41:22 -0700 |
commit | 4286d07d7a31812ba16d67d3c7e0c05a27e444cb (patch) | |
tree | 70a882c536a24797f988e35739693cc98915ab20 /host/utils | |
parent | 360681f26ffa5f1bea095291eeaf595b4e0aa447 (diff) | |
download | uhd-4286d07d7a31812ba16d67d3c7e0c05a27e444cb.tar.gz uhd-4286d07d7a31812ba16d67d3c7e0c05a27e444cb.tar.bz2 uhd-4286d07d7a31812ba16d67d3c7e0c05a27e444cb.zip |
usrp2: removed errors='ignore' for burners for py26
Diffstat (limited to 'host/utils')
-rwxr-xr-x | host/utils/usrp2_card_burner.py | 2 | ||||
-rwxr-xr-x | host/utils/usrp_n2xx_net_burner.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/host/utils/usrp2_card_burner.py b/host/utils/usrp2_card_burner.py index 02d5c4b18..8e4a4f224 100755 --- a/host/utils/usrp2_card_burner.py +++ b/host/utils/usrp2_card_burner.py @@ -50,7 +50,7 @@ def command(*args): stderr=subprocess.STDOUT, ) ret = p.wait() - verbose = p.stdout.read().decode('utf-8', errors='ignore') + verbose = p.stdout.read().decode('utf-8') if ret != 0: raise Exception(verbose) return verbose diff --git a/host/utils/usrp_n2xx_net_burner.py b/host/utils/usrp_n2xx_net_burner.py index 6d1c02712..835ab696f 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('utf-8', errors='ignore') + verbose = p.stdout.read().decode('utf-8') if ret != 0: raise Exception(verbose) return verbose |