From 774f27e3363a2d7be2973c6e6d0bdda12536b23d Mon Sep 17 00:00:00 2001 From: Steven Davidson Date: Fri, 22 Nov 2013 19:35:19 +0000 Subject: [PATCH] Reports changed status from django_manage migrate --- web_infrastructure/django_manage | 3 +++ 1 file changed, 3 insertions(+) diff --git a/web_infrastructure/django_manage b/web_infrastructure/django_manage index fd610fb9cba..d707ece8d7d 100644 --- a/web_infrastructure/django_manage +++ b/web_infrastructure/django_manage @@ -155,6 +155,9 @@ def loaddata_filter_output(line): def syncdb_filter_output(line): return ("Creating table " in line) or ("Installed" in line and "Installed 0 object" not in line) +def migrate_filter_output(line): + return ("Migrating forwards " in line) or ("Installed" in line and "Installed 0 object" not in line) + def main(): command_allowed_param_map = dict( cleanup=(),