Fixed #8224 -- Corrected link in files documentation.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@8299 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Gary Wilson Jr 2008-08-11 13:52:09 +00:00
parent 4e5aa1b141
commit 12c7918a45
1 changed files with 16 additions and 16 deletions

View File

@ -61,9 +61,9 @@ Creating ``File`` instances
---------------------------
Most of the time you'll simply use a ``File`` that Django's given you (i.e. a
file attached to an model as above, or perhaps an `uploaded file`_).
file attached to a model as above, or perhaps an `uploaded file`_).
.. _uploaded file: ../uploading_files/
.. _uploaded file: ../upload_handling/
If you need to construct a ``File`` yourself, the easiest way is to create one
using a Python built-in ``file`` object::