diff options
| author | Aymeric Augustin <aymeric.augustin@m4x.org> | 2012-07-20 16:05:39 +0200 |
|---|---|---|
| committer | Aymeric Augustin <aymeric.augustin@m4x.org> | 2012-07-22 09:29:51 +0200 |
| commit | 473d5f4ba1ce4ea93e7cb371b78d318423dfebe6 (patch) | |
| tree | ae274c527f82a3068ed822422ae442909ca35e41 | |
| parent | 8b0190984116873158ee627c7a033a7bd4c3a199 (diff) | |
[py3] Fixed django.utils.six.moves.
It didn't work because six was inside django.utils.
| -rw-r--r-- | django/utils/six.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/utils/six.py b/django/utils/six.py index 6526d76cb1..b1d58e5668 100644 --- a/django/utils/six.py +++ b/django/utils/six.py @@ -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): |
