From c47b69ba53e641938438898462d09b520f179578 Mon Sep 17 00:00:00 2001 From: Chris Beaven Date: Mon, 7 Mar 2011 22:54:55 +0000 Subject: [PATCH] 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 --- django/contrib/staticfiles/finders.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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()