From 1ebd6860b65288d8fbe71b7a132f78bed620044d Mon Sep 17 00:00:00 2001 From: Timo Graham Date: Sun, 16 Jan 2011 21:49:01 +0000 Subject: [PATCH] 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 --- docs/howto/static-files.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 --------------------------------------------------