From 953021d4496b574c8c785cca2bf431a802e0461f Mon Sep 17 00:00:00 2001 From: benoitc Date: Mon, 22 Aug 2011 16:43:15 +0200 Subject: [PATCH] proper fix. ":w" helps. --- gunicorn/sock.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gunicorn/sock.py b/gunicorn/sock.py index 09c55ad4..16a6092f 100644 --- a/gunicorn/sock.py +++ b/gunicorn/sock.py @@ -79,7 +79,7 @@ class UnixSocket(BaseSocket): os.remove(conf.address) except OSError: pass - super(UnixSocket, self).__init__(conf, fd=fd) + super(UnixSocket, self).__init__(conf, log, fd=fd) def __str__(self): return "unix:%s" % self.address