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:
parent
61fe50fdd6
commit
f46c4140ce
|
@ -43,6 +43,7 @@ class Command(NoArgsCommand):
|
||||||
"'.*' and '*~'."),
|
"'.*' and '*~'."),
|
||||||
)
|
)
|
||||||
help = "Collect static files in a single location."
|
help = "Collect static files in a single location."
|
||||||
|
requires_model_validation = False
|
||||||
|
|
||||||
def __init__(self, *args, **kwargs):
|
def __init__(self, *args, **kwargs):
|
||||||
super(NoArgsCommand, self).__init__(*args, **kwargs)
|
super(NoArgsCommand, self).__init__(*args, **kwargs)
|
||||||
|
|
Loading…
Reference in New Issue