mirror of
https://github.com/django/django.git
synced 2025-08-03 10:34:04 +00:00
Fixed #23097 -- Switched to new octal format in docs
This commit is contained in:
parent
57d2b3f2a7
commit
e1c85167a3
6 changed files with 8 additions and 8 deletions
|
@ -836,7 +836,7 @@ Write stderr to the *FILE* file.
|
|||
``umask=UMASK``
|
||||
|
||||
Umask to use when daemonizing. The value is interpreted as an octal number
|
||||
(default value is ``022``).
|
||||
(default value is ``0o22``).
|
||||
|
||||
Example usage::
|
||||
|
||||
|
|
|
@ -1281,13 +1281,13 @@ FILE_UPLOAD_PERMISSIONS
|
|||
|
||||
Default: ``None``
|
||||
|
||||
The numeric mode (i.e. ``0644``) to set newly uploaded files to. For
|
||||
The numeric mode (i.e. ``0o644``) to set newly uploaded files to. For
|
||||
more information about what these modes mean, see the documentation for
|
||||
:func:`os.chmod`.
|
||||
|
||||
If this isn't given or is ``None``, you'll get operating-system
|
||||
dependent behavior. On most platforms, temporary files will have a mode
|
||||
of ``0600``, and files saved from memory will be saved using the
|
||||
of ``0o600``, and files saved from memory will be saved using the
|
||||
system's standard umask.
|
||||
|
||||
This setting also determines the default permissions for collected static files
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue