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:31:53 -0400 |
| commit | 9b88dd3809a178e5bdc2e4a5d2794c2842a2cd43 (patch) | |
| tree | 38dc6dddfe6a1af39bb1456d6fde1d9f21d6a3a9 | |
| parent | 8c9240222fd882d9ae3819ff289989df1bcd05d7 (diff) | |
Fixed #20679 -- Corrected CachedFilesMixin.post_process docstring.
Thanks bmispelon for the report.
| -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: |
