mirror of
				https://github.com/django/django.git
				synced 2025-10-30 17:16:10 +00:00 
			
		
		
		
	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:
		| @@ -5,6 +5,7 @@ import inspect | |||||||
| from django.conf import settings | from django.conf import settings | ||||||
| from django.utils import timezone | from django.utils import timezone | ||||||
| from django.utils.functional import cached_property | from django.utils.functional import cached_property | ||||||
|  | from django.utils.six.moves import xrange | ||||||
|  |  | ||||||
|  |  | ||||||
| class RegisterLookupMixin(object): | class RegisterLookupMixin(object): | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user