mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-05 05:34:32 +02:00
Merge branch 'bugfix/ws_example_test_format' into 'master'
Fix format string in websocket example Closes IDFGH-3025 See merge request espressif/esp-idf!8239
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