diff options
Diffstat (limited to 'django/utils/functional.py')
| -rw-r--r-- | django/utils/functional.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/django/utils/functional.py b/django/utils/functional.py index 055e511912..92be506f3b 100644 --- a/django/utils/functional.py +++ b/django/utils/functional.py @@ -166,8 +166,7 @@ def lazystr(text): """ Shortcut for the common case of a lazy callable that returns str. """ - from django.utils.encoding import force_text # Avoid circular import - return lazy(force_text, str)(text) + return lazy(str, str)(text) def keep_lazy(*resultclasses): |
