Ticket #7643: makemessages.diff
| File makemessages.diff, 0.6 kB (added by Horst Gutmann <zerok@zerokspot.com>, 5 months ago) |
|---|
-
a/django/core/management/commands/makemessages.py
old new 14 14 """ 15 15 # Need to ensure that the i18n framework is enabled 16 16 from django.conf import settings 17 settings.configure(USE_I18N = True) 17 try: 18 settings.USE_I18N = True 19 except ImportError: 20 settings.configure(USE_I18N = True) 18 21 19 22 from django.utils.translation import templatize 20 23
