Mercurial > p > roundup > code
diff roundup/configuration.py @ 5736:1b5bcc5d745f
Change umask default to python 3 (put python2 compatible) format with
leading '0o' and padded to 3 characters.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Sun, 26 May 2019 19:30:29 -0400 |
| parents | 0e6ed3d72f92 |
| children | 943e61bc26d5 |
line wrap: on
line diff
--- a/roundup/configuration.py Sun May 26 18:30:28 2019 -0400 +++ b/roundup/configuration.py Sun May 26 19:30:29 2019 -0400 @@ -662,7 +662,7 @@ "Additional stop-words for the full-text indexer specific to\n" "your tracker. See the indexer source for the default list of\n" "stop-words (eg. A,AND,ARE,AS,AT,BE,BUT,BY, ...)"), - (OctalNumberOption, "umask", "02", + (OctalNumberOption, "umask", "0o002", "Defines the file creation mode mask."), (IntegerNumberOption, 'csv_field_size', '131072', "Maximum size of a csv-field during import. Roundups export\n"
