add a space between the name of the client and it's version number

This commit is contained in:
Yann Leboulanger 2005-04-06 20:29:14 +00:00
parent 85527841a2
commit 5f5b647717
1 changed files with 1 additions and 1 deletions

View File

@ -646,7 +646,7 @@ class GajimCore:
if qp.getTag('name'):
client_info += qp.getTag('name').getData()
if qp.getTag('version'):
client_info += qp.getTag('version').getData()
client_info += ' ' + qp.getTag('version').getData()
if qp.getTag('os'):
os_info += qp.getTag('os').getData()
jid = iq_obj.getFrom().getStripped()