Switched to octal notation (bis).
This commit is contained in:
parent
324d48d0a7
commit
38c18f1747
|
@ -33,7 +33,7 @@ if os.name == 'posix':
|
||||||
# Set custom file descriptors so that they get proper buffering.
|
# Set custom file descriptors so that they get proper buffering.
|
||||||
sys.stdout, sys.stderr = so, se
|
sys.stdout, sys.stderr = so, se
|
||||||
else:
|
else:
|
||||||
def become_daemon(our_home_dir='.', out_log=None, err_log=None, umask=022):
|
def become_daemon(our_home_dir='.', out_log=None, err_log=None, umask=0o022):
|
||||||
"""
|
"""
|
||||||
If we're not running under a POSIX system, just simulate the daemon
|
If we're not running under a POSIX system, just simulate the daemon
|
||||||
mode by doing redirections and directory changing.
|
mode by doing redirections and directory changing.
|
||||||
|
|
Loading…
Reference in New Issue