fix TB
This commit is contained in:
parent
42b897bb31
commit
2b0d8e2a70
|
@ -2519,7 +2519,7 @@ class AccountCreationWizardWindow:
|
|||
jid = helpers.parse_jid(jid)
|
||||
except helpers.InvalidFormat, s:
|
||||
pritext = _('Invalid User ID')
|
||||
dialogs.ErrorDialog(pritext, s).get_response()
|
||||
dialogs.ErrorDialog(pritext, str(s)).get_response()
|
||||
return
|
||||
|
||||
username, server = gajim.get_room_name_and_server_from_room_jid(jid)
|
||||
|
|
|
@ -360,7 +360,7 @@ _('Please fill in the data of the contact you want to add in account %s') %accou
|
|||
jid = helpers.parse_jid(jid)
|
||||
except helpers.InvalidFormat, s:
|
||||
pritext = _('Invalid User ID')
|
||||
ErrorDialog(pritext, s).get_response()
|
||||
ErrorDialog(pritext, str(s)).get_response()
|
||||
return
|
||||
|
||||
# Check if jid is already in roster
|
||||
|
|
Loading…
Reference in New Issue