Skip to content

Commit 37f7e06

Browse files
committed
Fixed circuitpy compatibility bug
1 parent 427a01d commit 37f7e06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

servercom/implementations/circuitpy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ def connect_wifi(self, attempts=50) -> None:
167167
break
168168
except ConnectionError as e:
169169
if self.v:
170-
print(e.with_traceback)
170+
print(e)
171171
attempts -= 1
172172
time.sleep(.1)
173173
if self.v:

0 commit comments

Comments
 (0)