Author: jezdez
Date: 2012-02-12 06:49:42 -0800 (Sun, 12 Feb 2012)
New Revision: 17514

Modified:
   django/trunk/django/contrib/staticfiles/management/commands/collectstatic.py
Log:
Fixed #17656 -- Stopped the collectstatic management command from running the 
database validation. Thanks, jcspray.

Modified: 
django/trunk/django/contrib/staticfiles/management/commands/collectstatic.py
===================================================================
--- 
django/trunk/django/contrib/staticfiles/management/commands/collectstatic.py    
    2012-02-12 14:29:30 UTC (rev 17513)
+++ 
django/trunk/django/contrib/staticfiles/management/commands/collectstatic.py    
    2012-02-12 14:49:42 UTC (rev 17514)
@@ -43,6 +43,7 @@
                 "'.*' and '*~'."),
     )
     help = "Collect static files in a single location."
+    requires_model_validation = False
 
     def __init__(self, *args, **kwargs):
         super(NoArgsCommand, self).__init__(*args, **kwargs)

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.

Reply via email to