Fix format string in websocket example

* Original commit: espressif/esp-idf@5288a797ef
This commit is contained in:
Elia Bieri
2022-03-01 12:18:50 +04:00
committed by gabsuren
parent 2b044f2434
commit 42920d7fb5
+1 -1
View File
@@ -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):