Derek Kuliński wrote:
> I suspect that maybe one of my contact uses special
> character in his nickname or status message):
> 

The trunk version doesn't handle decoding unicode names. I'm too lazy to 
make a patch, but you want to edit src/tlib/[EMAIL PROTECTED]

         while len(itemdata)>4:
             nameLength = struct.unpack('!H', itemdata[:2])[0]
-           name = itemdata[2:2+nameLength]
+           name, _ = guess_encoding(itemdata[2:2+nameLength])
             groupID, buddyID, itemType, restLength = \

-Scott

-- 
Scott Dial
[EMAIL PROTECTED]
[EMAIL PROTECTED]
_______________________________________________
py-transports mailing list
py-transports@blathersource.org
http://lists.modevia.com/cgi-bin/mailman/listinfo/py-transports

Reply via email to