Skip to content

Commit

Permalink
Fixed #17656 -- Stopped the collectstatic management command from run…
Browse files Browse the repository at this point in the history
…ning the database validation. Thanks, jcspray.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@17514 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
jezdez committed Feb 12, 2012
1 parent 61fe50f commit f46c414
Showing 1 changed file with 1 addition and 0 deletions.
Expand Up @@ -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)
Expand Down

0 comments on commit f46c414

Please sign in to comment.