Skip to content

Commit

Permalink
fix unix socket. spotted by @jinzo on irc. Thanks!
Browse files Browse the repository at this point in the history
  • Loading branch information
benoitc committed Aug 22, 2011
1 parent eac1812 commit 94f39e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gunicorn/sock.py
Expand Up @@ -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)
Expand Down

0 comments on commit 94f39e9

Please sign in to comment.