Fix change status on django_manage collectstatic. (#4239)
Ignore blank lines in collectstatic output.
This commit is contained in:
parent
90bf5434d0
commit
3149fdf158
1 changed files with 1 additions and 1 deletions
|
@ -167,7 +167,7 @@ def migrate_filter_output(line):
|
||||||
return ("Migrating forwards " in line) or ("Installed" in line and "Installed 0 object" not in line) or ("Applying" in line)
|
return ("Migrating forwards " in line) or ("Installed" in line and "Installed 0 object" not in line) or ("Applying" in line)
|
||||||
|
|
||||||
def collectstatic_filter_output(line):
|
def collectstatic_filter_output(line):
|
||||||
return "0 static files" not in line
|
return line and "0 static files" not in line
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
command_allowed_param_map = dict(
|
command_allowed_param_map = dict(
|
||||||
|
|
Loading…
Reference in a new issue