default umask

This commit is contained in:
benoitc 2010-02-21 13:58:26 +01:00
parent c40697879c
commit 6bddc03db6
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ class Config(object):
loglevel='info',
pidfile=None,
workers=1,
umask=0,
umask="0",
user=None,
group=None,

View File

@ -24,7 +24,7 @@ LOG_LEVELS = {
"debug": logging.DEBUG
}
UMASK = 0
UMASK = "0"
def options():
""" build command lines options passed to OptParse object """