mirror of
https://github.com/espressif/esp-protocols.git
synced 2025-07-30 02:37:31 +02:00
Fix format string in websocket example
* Original commit: espressif/esp-idf@5288a797ef
This commit is contained in:
@ -82,7 +82,7 @@ class Websocket:
|
|||||||
return
|
return
|
||||||
|
|
||||||
except socket.error as err:
|
except socket.error as err:
|
||||||
print("Unable to establish a websocket connection: {}, {}".format(err))
|
print("Unable to establish a websocket connection: {}".format(err))
|
||||||
raise
|
raise
|
||||||
|
|
||||||
def handshake(self, data):
|
def handshake(self, data):
|
||||||
|
Reference in New Issue
Block a user