Skip to content

Commit d021005

Browse files
author
Karl Fleischmann
committed
Fix code comment
1 parent bcabd1d commit d021005

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

adafruit_httpserver.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -355,9 +355,9 @@ def poll(self):
355355
except OSError as ex:
356356
# handle EAGAIN and ECONNRESET
357357
if ex.errno == EAGAIN:
358-
# there is no data available right now, try again later".
358+
# there is no data available right now, try again later.
359359
return
360360
if ex.errno == ECONNRESET:
361-
# connection reset by peer, try again later".
361+
# connection reset by peer, try again later.
362362
return
363363
raise

0 commit comments

Comments
 (0)