fix unix socket. spotted by @jinzo on irc. Thanks!

This commit is contained in:
benoitc 2011-08-22 16:38:12 +02:00
parent eac1812f36
commit 94f39e9d5e

View File

@ -73,7 +73,7 @@ class UnixSocket(BaseSocket):
FAMILY = socket.AF_UNIX
def __init__(self, conf, fd=None):
def __init__(self, conf, log, fd=None):
if fd is None:
try:
os.remove(conf.address)