Fix the docstring of contrib.staticfiles BaseFinder so it's not misleading.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@15771 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Chris Beaven 2011-03-07 22:54:55 +00:00
parent 4c41159494
commit c47b69ba53
1 changed files with 2 additions and 1 deletions

View File

@ -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()