From 115837dd07d06d613cdcb41707927a93273c413c Mon Sep 17 00:00:00 2001 From: Kimball Johnson Date: Wed, 29 Aug 2018 22:05:20 +0100 Subject: [PATCH] Fix typo in bootstrap.py --- bootstrap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap.py b/bootstrap.py index 8aeed1c..c3fb4e3 100644 --- a/bootstrap.py +++ b/bootstrap.py @@ -58,7 +58,7 @@ def wifi_details(): def connect(): details = wifi_details() if 'user' in details: - wifi.connect(details['ssid'], details['pw'], enterprise=True, entuser=details['user'], entmethod=wlan.EAP_METHOD_PEAP0_MSCHAPv2, entserverauth=False) + wifi.connect(details['ssid'], details['pw'], enterprise=True, entuser=details['user'], entmethod=wifi.EAP_METHOD_PEAP0_MSCHAPv2, entserverauth=False) elif 'pw' in details: wifi.connect(details['ssid'], details['pw']) else: