Advertisement
Guest User

Untitled

a guest
Apr 11th, 2012
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. diff --git a/host/utils/usrp2_card_burner.py b/host/utils/usrp2_card_burner.py
  2. index 34c40d5..02d5c4b 100755
  3. --- a/host/utils/usrp2_card_burner.py
  4. +++ b/host/utils/usrp2_card_burner.py
  5. @@ -50,7 +50,7 @@ def command(*args):
  6. stderr=subprocess.STDOUT,
  7. )
  8. ret = p.wait()
  9. - verbose = p.stdout.read().decode()
  10. + verbose = p.stdout.read().decode('utf-8', errors='ignore')
  11. if ret != 0: raise Exception(verbose)
  12. return verbose
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement