[punchagan] fix rename group dialog with & char. Fixes #4937

This commit is contained in:
Yann Leboulanger 2009-04-05 17:59:31 +00:00
parent fabadfd778
commit 2be80422a0
1 changed files with 2 additions and 1 deletions

View File

@ -2645,7 +2645,8 @@ class RosterWindow:
return
old_text = jid
title = _('Rename Group')
message = _('Enter a new name for group %s') % jid
message = _('Enter a new name for group %s') % \
gobject.markup_escape_text(jid)
def on_renamed(new_text, account, row_type, jid, old_text):
if 'rename' in gajim.interface.instances: