replace ugettext by a simple gettext

This commit is contained in:
gwen 2014-04-24 16:39:16 +02:00 committed by Emmanuel Garette
parent a408a583fb
commit 44c96f3a60
1 changed files with 1 additions and 1 deletions

View File

@ -55,4 +55,4 @@ gettext.translation(APP_NAME, fallback=True)
t = gettext.translation(APP_NAME, fallback=True)
def _(msg):
return t.ugettext(msg)
return t.gettext(msg)