fix: print_log -> print_error

This commit is contained in:
ecdsa 2013-04-27 10:57:15 +02:00
parent 6069939003
commit 827e29c1dc
1 changed files with 1 additions and 1 deletions

View File

@ -338,7 +338,7 @@ class Interface(threading.Thread):
timeout = True
except socket.error, err:
if err.errno in [11, 10035]:
print_log("socket errno", err.errno)
print_error("socket errno", err.errno)
time.sleep(0.1)
continue
else: