Fixed #17656 -- Stopped the collectstatic management command from running the database validation. Thanks, jcspray.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@17514 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Jannis Leidel 2012-02-12 14:49:42 +00:00
parent 61fe50fdd6
commit f46c4140ce
1 changed files with 1 additions and 0 deletions

View File

@ -43,6 +43,7 @@ class Command(NoArgsCommand):
"'.*' and '*~'."),
)
help = "Collect static files in a single location."
requires_model_validation = False
def __init__(self, *args, **kwargs):
super(NoArgsCommand, self).__init__(*args, **kwargs)