From 440b395f377972e7c9de66f74ad1875f51c50fd0 Mon Sep 17 00:00:00 2001 From: Chris Faulkner Date: Thu, 9 Jul 2015 13:04:13 -0700 Subject: [PATCH] Report change status on django_manage collectstatic. --- web_infrastructure/django_manage.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/web_infrastructure/django_manage.py b/web_infrastructure/django_manage.py index 201cd08303b..2637446d6f3 100644 --- a/web_infrastructure/django_manage.py +++ b/web_infrastructure/django_manage.py @@ -165,6 +165,9 @@ def syncdb_filter_output(line): def migrate_filter_output(line): return ("Migrating forwards " in line) or ("Installed" in line and "Installed 0 object" not in line) +def collectstatic_filter_output(line): + return "0 static files" not in line + def main(): command_allowed_param_map = dict( cleanup=(),