summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJacob Kaplan-Moss <jacob@jacobian.org>2010-10-20 20:16:36 +0000
committerJacob Kaplan-Moss <jacob@jacobian.org>2010-10-20 20:16:36 +0000
commit14b52b95d260e38392c7f2c3e0ebc34525a7aa89 (patch)
tree4328c33052a69e53f3567b422fad82662979fa5e /docs
parentec80e55cac2147e1944ed4adb9761e94bd553e5d (diff)
Removes a mistaken note about the static media development helper.
Turns out that when you write documentation without actually consulting the code you get things wrong. Who knew? Thanks to Waldemar Kornewald for catching my mistake. git-svn-id: http://code.djangoproject.com/svn/django/trunk@14299 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/howto/static-files.txt3
1 files changed, 1 insertions, 2 deletions
diff --git a/docs/howto/static-files.txt b/docs/howto/static-files.txt
index 6b7b34f23c..113e1d4995 100644
--- a/docs/howto/static-files.txt
+++ b/docs/howto/static-files.txt
@@ -203,8 +203,7 @@ line goes at the top of the file, and the last line at the bottom::
This will inspect your :setting:`STATICFILES_URL` and
:setting:`STATICFILES_ROOT` settings and wire up the view to serve static media
-accordingly. Remember to run :djadmin:`collectstatic` when your media changes;
-the view only serves static files that have been collected.
+accordingly.
.. warning::