diff options
Diffstat (limited to 'src/mailman/core/initialize.py')
| -rw-r--r-- | src/mailman/core/initialize.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mailman/core/initialize.py b/src/mailman/core/initialize.py index 0d0b829fe..6f1e10068 100644 --- a/src/mailman/core/initialize.py +++ b/src/mailman/core/initialize.py @@ -115,7 +115,7 @@ def initialize_1(config_path=None): # write our files. Specifically we must have g+rw and we probably want # o-rwx although I think in most cases it doesn't hurt if other can read # or write the files. - os.umask(007) + os.umask(0o007) # Initialize configuration event subscribers. This must be done before # setting up the configuration system. from mailman.app.events import initialize as initialize_events |
