1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Used call_command return value in staticfiles tests

Refs #26190.
This commit is contained in:
Claude Paroz
2016-02-13 18:20:29 +01:00
parent b46c0ea6c8
commit 269b5f262c
3 changed files with 11 additions and 20 deletions

View File

@@ -194,7 +194,7 @@ class Command(BaseCommand):
', %s post-processed'
% post_processed_count or ''),
}
self.stdout.write(summary)
return summary
def log(self, msg, level=2):
"""

View File

@@ -22,7 +22,7 @@ class Command(LabelCommand):
result = finders.find(path, all=options['all'])
path = force_text(path)
if verbosity >= 2:
searched_locations = ("Looking in the following locations:\n %s" %
searched_locations = ("\nLooking in the following locations:\n %s" %
"\n ".join(force_text(location)
for location in finders.searched_locations))
else:
@@ -33,7 +33,7 @@ class Command(LabelCommand):
result = (force_text(os.path.realpath(path)) for path in result)
if verbosity >= 1:
file_list = '\n '.join(result)
return ("Found '%s' here:\n %s\n%s" %
return ("Found '%s' here:\n %s%s" %
(path, file_list, searched_locations))
else:
return '\n'.join(result)