diff options
| author | Gary Wilson Jr <gary.wilson@gmail.com> | 2008-12-22 23:21:32 +0000 |
|---|---|---|
| committer | Gary Wilson Jr <gary.wilson@gmail.com> | 2008-12-22 23:21:32 +0000 |
| commit | d66e63f2dc2a5fab29c93e3ca2850a67e30e18f8 (patch) | |
| tree | c917edadab008b03efcd9eb782980e759ff28cfa /docs | |
| parent | 9d13b6ec28dbe7f060f97436fb379935637ddc44 (diff) | |
Fixed #9904 -- Corrected name of storage method in files documentation.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9668 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/topics/files.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/files.txt b/docs/topics/files.txt index 5650a3e715..e166ff92c4 100644 --- a/docs/topics/files.txt +++ b/docs/topics/files.txt @@ -102,7 +102,7 @@ useful -- you can use the global default storage system:: >>> path u'/path/to/file' - >>> default_storage.filesize(path) + >>> default_storage.size(path) 11 >>> default_storage.open(path).read() 'new content' |
