diff options
Diffstat (limited to 'tests/wipy/wlan/wlan.py')
-rw-r--r-- | tests/wipy/wlan/wlan.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/wipy/wlan/wlan.py b/tests/wipy/wlan/wlan.py index d4f9b9fa9..8d2537511 100644 --- a/tests/wipy/wlan/wlan.py +++ b/tests/wipy/wlan/wlan.py @@ -6,10 +6,9 @@ from network import WLAN import os import time import testconfig -import pyb -machine = os.uname().machine -if not 'LaunchPad' in machine and not 'WiPy' in machine: +mch = os.uname().machine +if not 'LaunchPad' in mch and not 'WiPy' in mch: raise Exception('Board not supported!') |