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
1 changed files with 4 additions and 4 deletions

View File

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