fix a bug with some locales. start using unicode instance for strings

This commit is contained in:
Nikos Kouremenos 2005-06-01 21:40:33 +00:00
parent e793a889b9
commit 8506568722
2 changed files with 2 additions and 2 deletions

View File

@ -632,7 +632,7 @@ class Connection:
if keyID and USE_GPG:
if not msg:
lowered_uf_status_msg = helpers.get_uf_show(show).lower()
msg = "I'm %s" % lowered_uf_status_msg
msg = _("I'm %s") % lowered_uf_status_msg
signed = self.gpg.sign(msg, keyID)
if signed == 'BAD_PASSPHRASE':
signed = ''

View File

@ -43,4 +43,4 @@ def get_uf_show(show):
uf_show = _('Not in the roster')
else:
uf_show = _('Has errors')
return uf_show
return unicode(uf_show)