Update django/contrib/staticfiles/management/commands/collectstatic.py

Fixed small output error.
This commit is contained in:
Mitar 2012-12-27 20:37:12 +01:00
parent db278c3bf9
commit cb98806101
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ class Command(NoArgsCommand):
dry_run=self.dry_run)
for original_path, processed_path, processed in processor:
if processed:
self.log("Post-processed '%s' as '%s" %
self.log("Post-processed '%s' as '%s'" %
(original_path, processed_path), level=1)
self.post_processed_files.append(original_path)
else: