summaryrefslogtreecommitdiff
path: root/docs/howto
diff options
context:
space:
mode:
authorChris Beaven <smileychris@gmail.com>2010-10-26 01:16:22 +0000
committerChris Beaven <smileychris@gmail.com>2010-10-26 01:16:22 +0000
commit82dca6d4af8d4edb82d6b86cd140589f24ba2d25 (patch)
tree9f0f410ce73a5353dc69c938b6d7388c445ff6fd /docs/howto
parent34f003028d2e3471820935f36abaed099f7e4cb6 (diff)
Replace an incorrect reference to collectmedia in the docs (the command is collectstatic)
git-svn-id: http://code.djangoproject.com/svn/django/trunk@14354 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/howto')
-rw-r--r--docs/howto/static-files.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/howto/static-files.txt b/docs/howto/static-files.txt
index 16a3e3fc99..5cb36a6396 100644
--- a/docs/howto/static-files.txt
+++ b/docs/howto/static-files.txt
@@ -239,7 +239,7 @@ If you want to serve your media from the same server that's already serving your
app, the basic outline gets modified to look something like:
* Push your code up to the deployment server.
- * On the server, run :djadmin:`collectmedia` to move all the media into
+ * On the server, run :djadmin:`collectstatic` to move all the media into
:setting:`STATICFILES_ROOT`.
* Point your web server at :setting:`STATICFILES_ROOT`. For example, here's
of :ref:`how to do this under Apache and mod_wsgi <serving-media-files>`.