diff options
| author | Tim Graham <timograham@gmail.com> | 2015-06-15 10:10:40 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-06-15 13:15:24 -0400 |
| commit | 4b600ed24488b2d1fc0fd59fc883a84ee745fcf8 (patch) | |
| tree | 0652c5a7f50fcbcd640bfbee41a9a4bfc217e362 /django/core | |
| parent | 47fcbe506c04019a12e16221843e25a52249b1ab (diff) | |
Removed django.utils.functional.total_ordering()
Diffstat (limited to 'django/core')
| -rw-r--r-- | django/core/management/commands/makemessages.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/django/core/management/commands/makemessages.py b/django/core/management/commands/makemessages.py index 094a2d14ff..0f7daf24cf 100644 --- a/django/core/management/commands/makemessages.py +++ b/django/core/management/commands/makemessages.py @@ -6,6 +6,7 @@ import io import os import re import sys +from functools import total_ordering from itertools import dropwhile import django @@ -17,7 +18,7 @@ from django.core.management.utils import ( from django.utils import six from django.utils._os import upath from django.utils.encoding import DEFAULT_LOCALE_ENCODING, force_str -from django.utils.functional import cached_property, total_ordering +from django.utils.functional import cached_property from django.utils.jslex import prepare_js_for_gettext from django.utils.text import get_text_list |
