Merge pull request #1414 from ByReaL/dev/python3D

python3: os.umask(002) to os.umask(0o002)
This commit is contained in:
Gina Häußge 2016-07-15 11:14:11 +02:00 committed by GitHub
commit 3cb045380e

View file

@ -44,7 +44,7 @@ class Daemon:
# decouple from parent environment
os.chdir('/')
os.setsid()
os.umask(002)
os.umask(0o002)
# do second fork
try: