Skip to content

Commit a4bb40a

Browse files
committed
Correct print state of network name
1 parent 97a5fcb commit a4bb40a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_portalbase/network.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ def connect(self, max_attempts=10):
347347

348348
while not self._wifi.is_connected:
349349
# secrets dictionary must contain 'ssid' and 'password' at a minimum
350-
print("Connecting to AP", self._secrets["ssid"])
350+
print("Connecting to AP", secret_entry["ssid"])
351351
if (
352352
secret_entry["ssid"] == "CHANGE ME"
353353
or secret_entry["password"] == "CHANGE ME"

0 commit comments

Comments
 (0)