Skip to content

Commit 4685648

Browse files
author
Melissa LeBlanc-Williams
committed
Removed error only showing on debug
1 parent 3418eb0 commit 4685648

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

adafruit_esp32spi/adafruit_esp32spi_wifimanager.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,7 @@ def connect(self):
7777
self._esp.connect_AP(bytes(self.ssid, 'utf-8'), bytes(self.password, 'utf-8'))
7878
self.neo_status((0, 100, 0))
7979
except (ValueError, RuntimeError) as error:
80-
if self.debug:
81-
print("Failed to connect, retrying\n", error)
80+
print("Failed to connect, retrying\n", error)
8281
continue
8382

8483
def get(self, url, **kw):

0 commit comments

Comments
 (0)