| Issue 6: | gettext alias is needed | |
| 1 person starred this issue and may be notified of changes. | Back to list |
http://code.djangoproject.com/wiki/BackwardsIncompatibleChanges#_nolongerinbuiltins Index: models.py =================================================================== --- models.py (revision 14) +++ models.py (working copy) @@ -9,6 +9,7 @@ import datetime from django.contrib.auth.models import User from django.conf import settings +from gettext import gettext as _ class Forum(models.Model): """
Nov 9, 2007
#1
mand...@gmail.com
Nov 17, 2007
see for the caouse http://code.djangoproject.com/wiki/BackwardsIncompatibleChanges#_nolongerinbuiltins
Nov 17, 2007
please do fix as importing gettext_lazy, not gettext
Nov 17, 2007
Fixed by importing ugettext_lazy. Will be committed to svn shortly.
Status:
Fixed
|