Commit e54a574b by Michael DeHaan

Merge pull request #5020 from damycra/django_manage_migrate_changed_filter

Reports changed status from django_manage migrate
parents 815b3268 f5d9679a
......@@ -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=(),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment