diff --git a/django/contrib/staticfiles/finders.py b/django/contrib/staticfiles/finders.py index 7394e600f32..ffb96e0af2d 100644 --- a/django/contrib/staticfiles/finders.py +++ b/django/contrib/staticfiles/finders.py @@ -31,7 +31,8 @@ class BaseFinder(object): def list(self, ignore_patterns=[]): """ Given an optional list of paths to ignore, this should return - a three item iterable with path, prefix and a storage instance. + a two item iterable consisting of the relative path and storage + instance. """ raise NotImplementedError()