fix parse error
This commit is contained in:
parent
41c552ad42
commit
25b5b85aaa
|
@ -68,7 +68,7 @@ class Roster:
|
||||||
nm = txt_dict['1st']
|
nm = txt_dict['1st']
|
||||||
if txt_dict.has_key('last'):
|
if txt_dict.has_key('last'):
|
||||||
if nm != '':
|
if nm != '':
|
||||||
nm = +' '
|
nm += ' '
|
||||||
nm += txt_dict['last']
|
nm += txt_dict['last']
|
||||||
if nm:
|
if nm:
|
||||||
self._data[jid]['name'] = nm
|
self._data[jid]['name'] = nm
|
||||||
|
|
Loading…
Reference in New Issue