Use print function

This commit is contained in:
Christopher Grebs 2014-01-05 19:07:21 -08:00 committed by Ben Firshman
commit 30ea4508c3
2 changed files with 9 additions and 9 deletions

View file

@ -123,7 +123,7 @@ if __name__ == '__main__':
url = sys.argv[1]
socket = websocket.create_connection(url)
print "connected\r"
print("connected\r")
with SocketClient(socket, interactive=True) as client:
client.run()