From 6a06db0491e4f0fac989dd7e633226e1b927274e Mon Sep 17 00:00:00 2001 From: Jacob Kaplan-Moss Date: Sat, 9 Aug 2008 14:17:54 +0000 Subject: [PATCH] Fixed a typo in files documentation. Fixes #8180. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8256 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/files.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/files.txt b/docs/files.txt index 9a8326806f..ffd108ca4b 100644 --- a/docs/files.txt +++ b/docs/files.txt @@ -226,7 +226,7 @@ For example, the following code will store uploaded files under from django.db import models from django.core.files.storage import FileSystemStorage - fs = FileSystemStorage(base_url='/media/photos') + fs = FileSystemStorage(location='/media/photos') class Car(models.Model): ...