diff options
| author | Gary Wilson Jr <gary.wilson@gmail.com> | 2008-07-03 06:04:17 +0000 |
|---|---|---|
| committer | Gary Wilson Jr <gary.wilson@gmail.com> | 2008-07-03 06:04:17 +0000 |
| commit | 1bfe99440958535a5e6563267c5bcafe68cfe424 (patch) | |
| tree | 6153fb6cb88a051b904f782b2a9ff84632a40a77 | |
| parent | aa63190d0b2c85b45bc042b80d2c7a41a4bbcbdd (diff) | |
Corrected typo in `uploadedfile` module.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7829 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/core/files/uploadedfile.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/files/uploadedfile.py b/django/core/files/uploadedfile.py index d6363b77e2..637609d085 100644 --- a/django/core/files/uploadedfile.py +++ b/django/core/files/uploadedfile.py @@ -12,7 +12,7 @@ __all__ = ('UploadedFile', 'TemporaryUploadedFile', 'InMemoryUploadedFile') class UploadedFile(object): """ - A abstract uploadded file (``TemporaryUploadedFile`` and + A abstract uploaded file (``TemporaryUploadedFile`` and ``InMemoryUploadedFile`` are the built-in concrete subclasses). An ``UploadedFile`` object behaves somewhat like a file object and |
