diff options
| author | Gary Wilson Jr <gary.wilson@gmail.com> | 2008-12-22 23:24:34 +0000 |
|---|---|---|
| committer | Gary Wilson Jr <gary.wilson@gmail.com> | 2008-12-22 23:24:34 +0000 |
| commit | 6c3a98ab3a559366c5de066feaf40e379bb42ef3 (patch) | |
| tree | 66422d6736c9152b80ac0d9f42ba3052a4ef8a0b | |
| parent | 6dd5c855d41ce0e4153742e7dff3335ee194cc64 (diff) | |
[1.0.X] Fixed #9904 -- Corrected name of storage method in files documentation.
Backport of r9668 from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9669 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -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' |
