Skip to content

Commit

Permalink
v0.1.6(.2) fixed README.doc Issue #25
Browse files Browse the repository at this point in the history
  • Loading branch information
WraithWireless authored and WraithWireless committed Nov 13, 2016
1 parent 2966251 commit 601741a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -208,7 +208,7 @@ False
['wlan0']
>>> pyw.isinterface('eth0') # check eth0 for wireless
False
>>> pyw.iswinterface('wlan0')
>>> pyw.iswireless('wlan0')
True
>>> pyw.phylist() # list all current phys (Note device ASW phy1)
[(1,'phy1), (0, 'phy0')]
Expand Down
2 changes: 1 addition & 1 deletion pyric/pyw.py
Expand Up @@ -162,7 +162,7 @@ def iswireless(dev, iosock=None):
return True
except AttributeError as e:
raise pyric.error(pyric.EINVAL, e)
except io.error as e:
except io.error:
return False

def phylist():
Expand Down

0 comments on commit 601741a

Please sign in to comment.