1
0
mirror of https://github.com/django/django.git synced 2025-11-07 07:15:35 +00:00

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
This commit is contained in:
Russell Keith-Magee
2007-02-11 06:20:52 +00:00
parent b767b5831d
commit 0e924c70b1
20 changed files with 33 additions and 21 deletions

View File

@@ -1,6 +1,7 @@
from django.conf import settings
from django.core import signals
from django.dispatch import dispatcher
from django.utils.translation import gettext as _
__all__ = ('backend', 'connection', 'DatabaseError')