1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Reports changed status from django_manage migrate

This commit is contained in:
Steven Davidson 2013-11-22 19:35:19 +00:00
parent 5c84d7e445
commit f5d9679abc

View file

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