diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-06-30 13:34:58 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-06-30 13:34:58 +0300 |
commit | d1b7ba5dc179570f2989d2eefabda4b4e9f6d8ae (patch) | |
tree | 6b8afe28b1ddefbb003d2c9e160adb4136d54ffa /esp8266 | |
parent | 6a6e0b7e05c430239c67efb702c44359e044c25d (diff) | |
download | micropython-d1b7ba5dc179570f2989d2eefabda4b4e9f6d8ae.tar.gz micropython-d1b7ba5dc179570f2989d2eefabda4b4e9f6d8ae.zip |
esp8266/websocket_helper.py: Fix typo in debug output.
Diffstat (limited to 'esp8266')
-rw-r--r-- | esp8266/scripts/websocket_helper.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/esp8266/scripts/websocket_helper.py b/esp8266/scripts/websocket_helper.py index 4c388a028b..9c06db5023 100644 --- a/esp8266/scripts/websocket_helper.py +++ b/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 |