Fix format string in websocket example

This commit is contained in:
Elia Bieri 2020-04-02 22:48:58 +02:00
parent c9f29e0b59
commit 5288a797ef

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):