From 14b52b95d260e38392c7f2c3e0ebc34525a7aa89 Mon Sep 17 00:00:00 2001 From: Jacob Kaplan-Moss Date: Wed, 20 Oct 2010 20:16:36 +0000 Subject: [PATCH] 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 --- docs/howto/static-files.txt | 3 +-- 1 file changed, 1 insertion(+), 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::