Typos
- previous commit contained typos
This commit is contained in:
parent
b1b0c46555
commit
191650f5a4
|
@ -204,7 +204,7 @@ class sendDataThread(threading.Thread):
|
|||
# Flush if the cycle ended with break
|
||||
try:
|
||||
self.sendDataThreadQueue.task_done()
|
||||
except ValueError
|
||||
except ValueError:
|
||||
pass
|
||||
|
||||
try:
|
||||
|
|
|
@ -115,7 +115,7 @@ class singleListener(threading.Thread, StoppableThread):
|
|||
try:
|
||||
socketObject, sockaddr = sock.accept()
|
||||
except socket.error as e:
|
||||
if isinstance(e.args, tuple) and
|
||||
if isinstance(e.args, tuple) and \
|
||||
e.args[0] in (errno.EINTR,):
|
||||
continue
|
||||
time.wait(1)
|
||||
|
|
Loading…
Reference in New Issue
Block a user