Commit 014b9615 authored by Malcolm Tredinnick's avatar Malcolm Tredinnick
Browse files

Typo fix for an error path in r100090.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@10091 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 29050ef9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -609,7 +609,7 @@ class QuerySet(object):
        method and that are not already specified as deferred are loaded
        immediately when the queryset is evaluated.
        """
        if fields == [None]:
        if fields == (None,):
            # Can only pass None to defer(), not only(), as the rest option.
            # That won't stop people trying to do this, so let's be explicit.
            raise TypeError("Cannot pass None as an argument to only().")