From d66e63f2dc2a5fab29c93e3ca2850a67e30e18f8 Mon Sep 17 00:00:00 2001 From: Gary Wilson Jr Date: Mon, 22 Dec 2008 23:21:32 +0000 Subject: [PATCH] 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 --- 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'