Fix coding style issues and typos

This commit is contained in:
Juhani Haverinen 2016-07-12 17:18:00 +03:00
parent 4b35a63562
commit 9e8ab99c22

View file

@ -196,7 +196,7 @@ def listen(port):
events = listening.poll()
for fd,event in events:
assert(event == select.POLLIN)
# Get socked from table established previously
# Get socket from table established previously
s = sock_by_fd[fd]
# Accept and handle the connection
conn, addr = s.accept()