Skip to content

Commit 99d36b0

Browse files
committed
Small syntax error fix
1 parent bc4878d commit 99d36b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

websocket_server/websocket_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ def read_next_message(self):
222222
elif opcode == OPCODE_PONG:
223223
opcode_handler = self.server._pong_received_
224224
else:
225-
logger.warn("Unknown opcode %#x." + opcode)
225+
logger.warn("Unknown opcode %#x." % opcode)
226226
self.keep_alive = 0
227227
return
228228

0 commit comments

Comments
 (0)