Browse Source

esp8266/websocket_helper.py: Fix typo in debug output.

pull/2205/head
Paul Sokolovsky 8 years ago
parent
commit
d1b7ba5dc1
  1. 2
      esp8266/scripts/websocket_helper.py

2
esp8266/scripts/websocket_helper.py

@ -41,7 +41,7 @@ def server_handshake(sock):
respkey = d.digest()
respkey = binascii.b2a_base64(respkey)[:-1]
if DEBUG:
print("respkey:", resp)
print("respkey:", respkey)
sock.send(b"""\
HTTP/1.1 101 Switching Protocols\r

Loading…
Cancel
Save