From edb155fda199f7fa481d0020e911a6eec0705dfa Mon Sep 17 00:00:00 2001 From: Barry Warsaw Date: Thu, 24 Apr 2003 18:08:13 +0000 Subject: [PATCH] UnicodeTranslationsTest.setUp(): Removed the coerce flag to the GNUTranslations constructor. --- Lib/test/test_gettext.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_gettext.py b/Lib/test/test_gettext.py index fc3b94167c5..81a20811613 100644 --- a/Lib/test/test_gettext.py +++ b/Lib/test/test_gettext.py @@ -274,7 +274,7 @@ def setUp(self): GettextBaseTest.setUp(self) fp = open(UMOFILE, 'rb') try: - self.t = gettext.GNUTranslations(fp, coerce=True) + self.t = gettext.GNUTranslations(fp) finally: fp.close() self._ = self.t.ugettext