Skip to content

Commit 3705681

Browse files
committed
Change umask default to python 3 (put python2 compatible) format with
leading '0o' and padded to 3 characters.
1 parent cd1ccc2 commit 3705681

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

roundup/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -662,7 +662,7 @@ def str2value(self, value):
662662
"Additional stop-words for the full-text indexer specific to\n"
663663
"your tracker. See the indexer source for the default list of\n"
664664
"stop-words (eg. A,AND,ARE,AS,AT,BE,BUT,BY, ...)"),
665-
(OctalNumberOption, "umask", "02",
665+
(OctalNumberOption, "umask", "0o002",
666666
"Defines the file creation mode mask."),
667667
(IntegerNumberOption, 'csv_field_size', '131072',
668668
"Maximum size of a csv-field during import. Roundups export\n"

0 commit comments

Comments
 (0)