From 8645ba5b5c5bc248d8ef0094302a502c67ef05b4 Mon Sep 17 00:00:00 2001 From: Joseph Schilz Date: Sun, 15 Nov 2020 13:02:04 -0800 Subject: [PATCH] Update boot.py Split on comma for APs with spaces in the names. --- boot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot.py b/boot.py index 91135a5..9bc6dc9 100644 --- a/boot.py +++ b/boot.py @@ -18,7 +18,7 @@ for connection in connections: - station, password = connection.split() + station, password = connection.split(", ") print("Connecting to {}.".format(station))