Skip to content

Commit 42343de

Browse files
committed
Fix pep8 warning
1 parent b8548c7 commit 42343de

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

aiohttp/websocket.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,8 @@ def do_handshake(method, headers, transport, protocols=()):
221221
protocol = proto
222222
break
223223
else:
224-
websocket_log.warning( # No overlap found: Return no protocol as per spec
224+
# No overlap found: Return no protocol as per spec
225+
websocket_log.warning(
225226
'Client protocols %r don’t overlap server-known ones %r',
226227
protocols, req_protocols)
227228

0 commit comments

Comments
 (0)