]> git.ipfire.org Git - thirdparty/babel.git/commitdiff
Fix `__repr__` of `Translations` class. Closes #63.
authorChristopher Lenz <cmlenz@gmail.com>
Wed, 5 Sep 2007 17:13:22 +0000 (17:13 +0000)
committerChristopher Lenz <cmlenz@gmail.com>
Wed, 5 Sep 2007 17:13:22 +0000 (17:13 +0000)
babel/support.py

index 7e521dd3e46e66cf0d02119d657f9d7e69a02763..2145d8fa9ebbc10716a6c3c3db3b9816b9d65edf 100644 (file)
@@ -317,4 +317,4 @@ class Translations(gettext.GNUTranslations):
         return self
 
     def __repr__(self):
-        return "<%s %r>" % (type(self).__name__)
+        return "<%s>" % (type(self).__name__)