summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJacob Kaplan-Moss <jacob@jacobian.org>2008-08-09 14:17:54 +0000
committerJacob Kaplan-Moss <jacob@jacobian.org>2008-08-09 14:17:54 +0000
commit6a06db0491e4f0fac989dd7e633226e1b927274e (patch)
tree85e22c8ee92767d73c6f16cb9b9e0c53da61506b /docs
parent618509335136478b547a5e719f3b66409edeebc2 (diff)
downloaddjango-6a06db0491e4f0fac989dd7e633226e1b927274e.tar.gz
Fixed a typo in files documentation. Fixes #8180.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8256 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/files.txt2
1 files changed, 1 insertions, 1 deletions
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):
...