summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTimo Graham <timograham@gmail.com>2011-01-16 21:49:01 +0000
committerTimo Graham <timograham@gmail.com>2011-01-16 21:49:01 +0000
commit1ebd6860b65288d8fbe71b7a132f78bed620044d (patch)
tree4d83dd940e6dec262bc3a32a51eb05332155567b /docs
parent5fd93e1c36081662c83cf817ac8370bf5f82b6fb (diff)
Fixed #15080 - Add -v0 to collectstatic fabric example. Thanks hvdklauw.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15229 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-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 e27cb99901..274cd985c8 100644
--- a/docs/howto/static-files.txt
+++ b/docs/howto/static-files.txt
@@ -297,7 +297,7 @@ like::
def deploy_static():
with cd(env.project_root):
- run('./manage.py collectstatic')
+ run('./manage.py collectstatic -v0 --noinput')
Serving static files from a dedicated media server
--------------------------------------------------