diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2007-02-11 06:20:52 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2007-02-11 06:20:52 +0000 |
| commit | 0e924c70b1ec5cae635a99d9fe7e279698dc5cd0 (patch) | |
| tree | 6f3b70da88f2c1fdbc191bf6a476a42e8d4f485c /tests | |
| parent | b767b5831d4bdd1cff04474278ea43e24c20274c (diff) | |
Refs #2920 -- Replaced implicit uses of _() with explicit imports or calls to gettext(). At some point post 0.96, we need to remove the calls that put _ into the builtins.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4485 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/regressiontests/defaultfilters/tests.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/regressiontests/defaultfilters/tests.py b/tests/regressiontests/defaultfilters/tests.py index 481557b782..ec5d26aba1 100644 --- a/tests/regressiontests/defaultfilters/tests.py +++ b/tests/regressiontests/defaultfilters/tests.py @@ -391,6 +391,7 @@ False """ from django.template.defaultfilters import * +from django.utils.translation import gettext as _ import datetime if __name__ == '__main__': |
