Update coreemu.py

set umask 0 to replicate previous behavior
This commit is contained in:
bharnden 2018-05-30 21:20:52 -07:00 committed by GitHub
parent 17f874e25f
commit 9f9dfbf6c2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -849,6 +849,9 @@ class CoreEmu(object):
:param dict config: configuration options
"""
# set umask 0
os.umask(0)
# configuration
self.config = config