0
0
mirror of https://github.com/django/django.git synced 2024-11-29 22:56:46 +01:00

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

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