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