From: Christopher Lenz Date: Wed, 5 Sep 2007 17:13:22 +0000 (+0000) Subject: Fix `__repr__` of `Translations` class. Closes #63. X-Git-Tag: 1.0~378 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d9d313c346e59a3dceaa5344fecedd0d841d88ef;p=thirdparty%2Fbabel.git Fix `__repr__` of `Translations` class. Closes #63. --- diff --git a/babel/support.py b/babel/support.py index 7e521dd3..2145d8fa 100644 --- a/babel/support.py +++ b/babel/support.py @@ -317,4 +317,4 @@ class Translations(gettext.GNUTranslations): return self def __repr__(self): - return "<%s %r>" % (type(self).__name__) + return "<%s>" % (type(self).__name__)