diff options
| author | Tim Graham <timograham@gmail.com> | 2014-05-06 19:47:22 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-05-06 19:47:22 -0400 |
| commit | 4492ea5475fd7c27c2cfda17c5f105940a3f06e7 (patch) | |
| tree | 98ad552e056f1edb69e68d17ce5a3c8892da0155 | |
| parent | 7951f125e77f67d70e58a31436eee46abdb8bf44 (diff) | |
Fixed #22586 -- Added LANGUAGE_SESSION_KEY to __all__.
Thanks david.fischer.ch at gmail.com for the report.
| -rw-r--r-- | django/utils/translation/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/django/utils/translation/__init__.py b/django/utils/translation/__init__.py index 3803ade6b4..6be664550d 100644 --- a/django/utils/translation/__init__.py +++ b/django/utils/translation/__init__.py @@ -19,6 +19,7 @@ __all__ = [ 'ungettext', 'ungettext_lazy', 'pgettext', 'pgettext_lazy', 'npgettext', 'npgettext_lazy', + 'LANGUAGE_SESSION_KEY', ] LANGUAGE_SESSION_KEY = '_language' |
