Commit ec23edfc authored by Adrian Holovaty's avatar Adrian Holovaty
Browse files

Formatting fix for [3248]

git-svn-id: http://code.djangoproject.com/svn/django/trunk@3250 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 31eb140b
Loading
Loading
Loading
Loading
+21 −24
Original line number Diff line number Diff line
@@ -15,13 +15,10 @@ LOOKUP_SEPARATOR = '__'

# The list of valid query types
QUERY_TERMS = (
    'exact', 'iexact',
    'contains', 'icontains',
    'gt', 'gte', 'lt', 'lte',
    'in',
    'exact', 'iexact', 'contains', 'icontains',
    'gt', 'gte', 'lt', 'lte', 'in',
    'startswith', 'istartswith', 'endswith', 'iendswith',
    'range', 'year', 'month', 'day',
    'isnull'
    'range', 'year', 'month', 'day', 'isnull',
)

# Size of each "chunk" for get_iterator calls.