mirror of
https://github.com/espressif/esp-protocols.git
synced 2025-07-29 10:17:30 +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
|
||||
|
||||
except socket.error as err:
|
||||
print("Unable to establish a websocket connection: {}, {}".format(err))
|
||||
print("Unable to establish a websocket connection: {}".format(err))
|
||||
raise
|
||||
|
||||
def handshake(self, data):
|
||||
|
Reference in New Issue
Block a user