commit | 6108bf5ed002925f2092deb025f336d8c2024299 | [log] [tgz] |
---|---|---|
author | Éric Araujo <merwok@netwok.org> | Mon Oct 04 23:52:37 2010 +0000 |
committer | Éric Araujo <merwok@netwok.org> | Mon Oct 04 23:52:37 2010 +0000 |
tree | 1e2c4f8c7329edab6adb0247528da28607818141 | |
parent | 701761693c7f6a2d748e43ae70f46e371087a864 [diff] [blame] |
Fix interaction of custom translation classes and caching (#9042)
diff --git a/Lib/gettext.py b/Lib/gettext.py index 4c957c0..f9392d8 100644 --- a/Lib/gettext.py +++ b/Lib/gettext.py
@@ -419,7 +419,7 @@ # once. result = None for mofile in mofiles: - key = os.path.abspath(mofile) + key = (class_, os.path.abspath(mofile)) t = _translations.get(key) if t is None: with open(mofile, 'rb') as fp: