From 165772f37e4cbbc42e95404d6da69d70ed836806 Mon Sep 17 00:00:00 2001 From: Gary Wilson Jr Date: Sat, 29 Mar 2008 15:26:58 +0000 Subject: [PATCH] Comment correction, `get_list` is now `filter`. git-svn-id: http://code.djangoproject.com/svn/django/trunk@7379 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- tests/modeltests/or_lookups/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/modeltests/or_lookups/models.py b/tests/modeltests/or_lookups/models.py index ee2cfd2b95..44dda0dc16 100644 --- a/tests/modeltests/or_lookups/models.py +++ b/tests/modeltests/or_lookups/models.py @@ -92,7 +92,7 @@ __test__ = {'API_TESTS':""" >>> Article.objects.filter(Q(headline__contains='bye'), headline__startswith='Hello') [] -# Try some arg queries with operations other than get_list +# Try some arg queries with operations other than filter. >>> Article.objects.get(Q(headline__startswith='Hello'), Q(headline__contains='bye'))