Fixed #21883 -- Added six.moves.xrange import

When moving code around from sql.where to lookups six.moves.xrange
import was forgotten. The xrange import is needed on Python 3.
This commit is contained in:
Anssi Kääriäinen 2014-01-28 21:08:29 +02:00
parent 5dc4a8652c
commit 0ca647357e
1 changed files with 1 additions and 0 deletions

View File

@ -5,6 +5,7 @@ import inspect
from django.conf import settings
from django.utils import timezone
from django.utils.functional import cached_property
from django.utils.six.moves import xrange
class RegisterLookupMixin(object):