summaryrefslogtreecommitdiff
path: root/django
diff options
context:
space:
mode:
authorChris Beaven <smileychris@gmail.com>2011-03-07 22:54:55 +0000
committerChris Beaven <smileychris@gmail.com>2011-03-07 22:54:55 +0000
commitc47b69ba53e641938438898462d09b520f179578 (patch)
tree2c2584ae2896e1ce20450167f2addafa95290e5f /django
parent4c41159494e8700ea6a4c846fbd6b636117f7937 (diff)
downloaddjango-c47b69ba53e641938438898462d09b520f179578.tar.gz
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
Diffstat (limited to 'django')
-rw-r--r--django/contrib/staticfiles/finders.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/django/contrib/staticfiles/finders.py b/django/contrib/staticfiles/finders.py
index 7394e600f3..ffb96e0af2 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()