From dc5ec290095e570ee1f96ffe110aee98009119bf Mon Sep 17 00:00:00 2001 From: benoitc Date: Mon, 17 Dec 2012 16:16:50 +0100 Subject: [PATCH] fix call --- gunicorn/sock.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gunicorn/sock.py b/gunicorn/sock.py index f3841929..78b79f25 100644 --- a/gunicorn/sock.py +++ b/gunicorn/sock.py @@ -79,13 +79,13 @@ class UnixSocket(BaseSocket): FAMILY = socket.AF_UNIX - def __init__(self, address, log, fd=None): + def __init__(self, address, conf, log, fd=None): if fd is None: try: os.remove(address) except OSError: pass - super(UnixSocket, self).__init__(addr, log, fd=fd) + super(UnixSocket, self).__init__(addr, conf, log, fd=fd) def __str__(self): return "unix:%s" % self.cfg_addr