From c0439b621086ae0ae348759a5a24969be8148d6a Mon Sep 17 00:00:00 2001 From: Claude Paroz Date: Sat, 25 May 2013 14:01:52 +0200 Subject: [PATCH] Removed obsolete attribute of DjangoTranslation --- django/utils/translation/trans_real.py | 1 - 1 file changed, 1 deletion(-) diff --git a/django/utils/translation/trans_real.py b/django/utils/translation/trans_real.py index 0aaa4ec99b..195badfc00 100644 --- a/django/utils/translation/trans_real.py +++ b/django/utils/translation/trans_real.py @@ -80,7 +80,6 @@ class DjangoTranslation(gettext_module.GNUTranslations): def __init__(self, *args, **kw): gettext_module.GNUTranslations.__init__(self, *args, **kw) self.set_output_charset('utf-8') - self.django_output_charset = 'utf-8' self.__language = '??' def merge(self, other):