Ver código fonte

Fix format string in websocket example

Elia Bieri 5 anos atrás
pai
commit
5288a797ef
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      examples/protocols/websocket/example_test.py

+ 1 - 1
examples/protocols/websocket/example_test.py

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