View Single Post
Posts: 71 | Thanked: 88 times | Joined on Dec 2009
#40
Originally Posted by badboyuk View Post
client.py

# CHANGE THE HOSTNAME TO THE HOSTNAME OR IP OF THE PC RUNNING THE SERVER COMPONENT
HOST, PORT = "192.168.0.1", 50007

changed it to:

# Myhostname, PORT = "192.168.0.2", 50007
That line should read:

Code:
HOST, PORT = "192.168.0.2", 50007
Putting a # in front of any line, comments the line out and would explain why the script would not work.