diff options
author | Josh Blum <josh@joshknows.com> | 2012-04-18 15:12:04 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2012-04-18 15:12:04 -0700 |
commit | 7051b32ba7892971d10768af0857a8c0e3d4dbfb (patch) | |
tree | f75bb304b1a8500c499115fcb376b54af3803907 /host/utils | |
parent | 09df4536a909ef008ff5315799ea624e463dcf97 (diff) | |
parent | 360681f26ffa5f1bea095291eeaf595b4e0aa447 (diff) | |
download | uhd-7051b32ba7892971d10768af0857a8c0e3d4dbfb.tar.gz uhd-7051b32ba7892971d10768af0857a8c0e3d4dbfb.tar.bz2 uhd-7051b32ba7892971d10768af0857a8c0e3d4dbfb.zip |
Merge branch 'maint'
Diffstat (limited to 'host/utils')
-rwxr-xr-x | host/utils/usrp_n2xx_net_burner.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/host/utils/usrp_n2xx_net_burner.py b/host/utils/usrp_n2xx_net_burner.py index ae6219524..6d1c02712 100755 --- a/host/utils/usrp_n2xx_net_burner.py +++ b/host/utils/usrp_n2xx_net_burner.py @@ -196,8 +196,10 @@ def win_get_interfaces(): adNode = a.ipAddressList while True: #convert ipAddr and ipMask into hex addrs that can be turned into a bcast addr - ipAddr = adNode.ipAddress.decode() - ipMask = adNode.ipMask.decode() + try: + ipAddr = adNode.ipAddress.decode() + ipMask = adNode.ipMask.decode() + except AttributeError: pass if ipAddr and ipMask: hexAddr = struct.unpack("<L", socket.inet_aton(ipAddr))[0] hexMask = struct.unpack("<L", socket.inet_aton(ipMask))[0] @@ -282,7 +284,7 @@ class burner_socket(object): (flash_size, sector_size) = self.get_flash_info() hw_rev = self.get_hw_rev() - if n2xx_revs.has_key(hw_rev): print("Hardware type: %s" % n2xx_revs[hw_rev][0]) + if hw_rev in n2xx_revs: print("Hardware type: %s" % n2xx_revs[hw_rev][0]) print("Flash size: %i\nSector size: %i\n" % (flash_size, sector_size)) if fpga: |