|
@@ -185,13 +185,13 @@ There are a few settings which control Django's file upload behavior:
|
|
|
most Unix-like systems).
|
|
|
|
|
|
:setting:`FILE_UPLOAD_PERMISSIONS`
|
|
|
- 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.
|
|
|
|
|
|
For security reasons, these permissions aren't applied to the temporary
|