Fixed some improper quotes in the form fields reference doc.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@16821 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Julien Phalip 2011-09-12 07:15:47 +00:00
parent 4e47df9de2
commit ca1e670499
1 changed files with 3 additions and 3 deletions

View File

@ -510,9 +510,9 @@ given length.
* Error message keys: ``required``, ``invalid``, ``missing``, ``empty``, * Error message keys: ``required``, ``invalid``, ``missing``, ``empty``,
``max_length`` ``max_length``
Has two optional arguments for validation, ''max_length'' and Has two optional arguments for validation, ``max_length`` and
''allow_empty_file''. If provided, these ensure that the file name is at ``allow_empty_file``. If provided, these ensure that the file name is at
most the given length, and that validation will succeed even if the file most the given length, and that validation will succeed even if the file
content is empty. content is empty.
To learn more about the ``UploadedFile`` object, see the :doc:`file uploads To learn more about the ``UploadedFile`` object, see the :doc:`file uploads