[py3] Fixed django.utils.six.moves.

It didn't work because six was inside django.utils.
This commit is contained in:
Aymeric Augustin 2012-07-20 16:05:39 +02:00
parent 8b01909841
commit 473d5f4ba1
1 changed files with 1 additions and 1 deletions

View File

@ -159,7 +159,7 @@ for attr in _moved_attributes:
setattr(_MovedItems, attr.name, attr)
del attr
moves = sys.modules["six.moves"] = _MovedItems("moves")
moves = sys.modules["django.utils.six.moves"] = _MovedItems("moves")
def add_move(move):