# HG changeset patch # User cmlenz # Date 1189012402 0 # Node ID e9550fb98127252f8efb281cdb893d8040cf3de9 # Parent c1654337d53bd12273a50d3140b6f353c51993b5 Fix `__repr__` of `Translations` class. Closes #63. diff --git a/babel/support.py b/babel/support.py --- a/babel/support.py +++ b/babel/support.py @@ -317,4 +317,4 @@ return self def __repr__(self): - return "<%s %r>" % (type(self).__name__) + return "<%s>" % (type(self).__name__)