diff options
| author | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2007-04-05 03:25:30 +0000 |
|---|---|---|
| committer | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2007-04-05 03:25:30 +0000 |
| commit | e57d1bdddadf714e41ec026e2dde9ab1cb329813 (patch) | |
| tree | 7c97823fb0c57b707551b558307ef1da842dacda /django/utils/translation/trans_null.py | |
| parent | 8424ea39f81bb23d4386db442dbac4f7630555a2 (diff) | |
Small fix to [4931].
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4932 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/utils/translation/trans_null.py')
| -rw-r--r-- | django/utils/translation/trans_null.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/utils/translation/trans_null.py b/django/utils/translation/trans_null.py index 2ee09483e1..10b07529e3 100644 --- a/django/utils/translation/trans_null.py +++ b/django/utils/translation/trans_null.py @@ -30,7 +30,7 @@ TECHNICAL_ID_MAP = { def gettext(message): return TECHNICAL_ID_MAP.get(message, message) -gettext_noop = gettext_lazy = gettext +gettext_noop = gettext_lazy = _ = gettext def to_locale(language): p = language.find('-') |
