From 6c3a98ab3a559366c5de066feaf40e379bb42ef3 Mon Sep 17 00:00:00 2001 From: Gary Wilson Jr Date: Mon, 22 Dec 2008 23:24:34 +0000 Subject: [PATCH] [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 --- docs/topics/files.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'