Fixed a bug in LazyI18nString.LazyGettextProxy

This commit is contained in:
Raphael Michel
2016-03-15 18:47:38 +01:00
parent 74908d8405
commit 4272959ba7

View File

@@ -83,7 +83,7 @@ class LazyI18nString:
return True
def __str__(self):
return str(self.lazygettext)
return str(ugettext(self.lazygettext))
@classmethod
def from_gettext(cls, lazygettext):