summaryrefslogtreecommitdiff
path: root/library/web_infrastructure/django_manage
diff options
context:
space:
mode:
Diffstat (limited to 'library/web_infrastructure/django_manage')
-rw-r--r--library/web_infrastructure/django_manage3
1 files changed, 3 insertions, 0 deletions
diff --git a/library/web_infrastructure/django_manage b/library/web_infrastructure/django_manage
index fd610fb9cb..d707ece8d7 100644
--- a/library/web_infrastructure/django_manage
+++ b/library/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=(),