1
0
mirror of https://github.com/django/django.git synced 2025-07-17 16:19:12 +00:00

[3.0.x] Corrected models.FilePathField signature in docs.

Backport of 787981f9d1d5abc489a0b069e3353b8ad7aa9778 from master
This commit is contained in:
Adam Johnson 2020-05-04 10:01:30 +02:00 committed by Mariusz Felisiak
parent 5c6be5816d
commit 883362b6a7

View File

@ -1001,10 +1001,10 @@ periodically via e.g. cron).
``FilePathField``
-----------------
.. class:: FilePathField(path=None, match=None, recursive=False, max_length=100, **options)
.. class:: FilePathField(path='', match=None, recursive=False, allow_files=True, allow_folders=False, max_length=100, **options)
A :class:`CharField` whose choices are limited to the filenames in a certain
directory on the filesystem. Has three special arguments, of which the first is
directory on the filesystem. Has some special arguments, of which the first is
**required**:
.. attribute:: FilePathField.path