summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2016-08-25 22:49:31 +0200
committerClaude Paroz <claude@2xlibre.net>2016-08-25 22:49:31 +0200
commit066283a11d90481ac6573dd01ab790bdea237645 (patch)
treedcfaec6d2c26deeccdd86baf2ee404565f229f7c
parent2315114090815aed72be2b9bc936d7b6374f12fc (diff)
downloaddjango-066283a11d90481ac6573dd01ab790bdea237645.tar.gz
Removed unneeded smart_text
-rw-r--r--django/db/models/options.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/django/db/models/options.py b/django/db/models/options.py
index f53d3bb59f..51022ab902 100644
--- a/django/db/models/options.py
+++ b/django/db/models/options.py
@@ -18,9 +18,7 @@ from django.utils.datastructures import ImmutableList, OrderedSet
from django.utils.deprecation import (
RemovedInDjango20Warning, warn_about_renamed_method,
)
-from django.utils.encoding import (
- force_text, python_2_unicode_compatible, smart_text,
-)
+from django.utils.encoding import force_text, python_2_unicode_compatible
from django.utils.functional import cached_property
from django.utils.text import camel_case_to_spaces, format_lazy
from django.utils.translation import override
@@ -313,7 +311,7 @@ class Options(object):
return '<Options for %s>' % self.object_name
def __str__(self):
- return "%s.%s" % (smart_text(self.app_label), smart_text(self.model_name))
+ return "%s.%s" % (self.app_label, self.model_name)
def can_migrate(self, connection):
"""