summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Kaplan-Moss <jacob@jacobian.org>2008-08-28 20:20:40 +0000
committerJacob Kaplan-Moss <jacob@jacobian.org>2008-08-28 20:20:40 +0000
commit503fda43fa534517585953660ca13b98d19c8e10 (patch)
tree9aa8a01a8946daa584458d65c56b2bed570f3822
parent0c66bac4f3d6464f315353aea3de928c8bb5459f (diff)
Fixed #8654: added `ugettext_lazy` to `django.utils.translation.__all__`.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8680 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/utils/translation/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/utils/translation/__init__.py b/django/utils/translation/__init__.py
index 43ce3e591a..c0a0df9532 100644
--- a/django/utils/translation/__init__.py
+++ b/django/utils/translation/__init__.py
@@ -8,7 +8,7 @@ __all__ = ['gettext', 'gettext_noop', 'gettext_lazy', 'ngettext',
'ngettext_lazy', 'string_concat', 'activate', 'deactivate',
'get_language', 'get_language_bidi', 'get_date_formats',
'get_partial_date_formats', 'check_for_language', 'to_locale',
- 'get_language_from_request', 'templatize', 'ugettext',
+ 'get_language_from_request', 'templatize', 'ugettext', 'ugettext_lazy',
'ungettext', 'deactivate_all']
# Here be dragons, so a short explanation of the logic won't hurt: