Reports changed status from django_manage migrate

reviewable/pr18780/r1
Steven Davidson 11 years ago
parent e315d391ca
commit 774f27e336

@ -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=(),

Loading…
Cancel
Save