diff options
| author | Tim Graham <timograham@gmail.com> | 2013-07-25 12:31:53 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-07-25 12:32:38 -0400 |
| commit | 9abbad491ac78fd061fe4b0dd96065fbbe4625fc (patch) | |
| tree | dcc0735927f5517b5a222ea7056b3bd2bdb4fb11 | |
| parent | ec6928be3430e5113a888da43a9b386f85add40b (diff) | |
[1.6.x] Fixed #20679 -- Corrected CachedFilesMixin.post_process docstring.
Thanks bmispelon for the report.
Backport of 9b88dd3809 from master
| -rw-r--r-- | django/contrib/staticfiles/storage.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/staticfiles/storage.py b/django/contrib/staticfiles/storage.py index d085cf723f..cd4ca516d5 100644 --- a/django/contrib/staticfiles/storage.py +++ b/django/contrib/staticfiles/storage.py @@ -202,7 +202,7 @@ class CachedFilesMixin(object): def post_process(self, paths, dry_run=False, **options): """ - Post process the given list of files (called from collectstatic). + Post process the given SortedDict of files (called from collectstatic). Processing is actually two separate operations: |
