My favorites | Sign in
Project Home Downloads Wiki Issues Source
READ-ONLY: This project has been archived. For more information see this post.
Search
for
  Advanced search   Search tips   Subscriptions

Issue 145 attachment: icqt.py.patch (774 bytes)

1
2
3
4
5
6
7
8
9
10
11
12
13
--- icqt.py.orig 2008-12-17 17:43:41.000000000 +0300
+++ icqt.py 2008-12-17 17:40:25.000000000 +0300
@@ -726,7 +726,8 @@
elif isinstance(member, oscar.SSIBuddy):
if member.nick:
try:
- unick = member.nick.decode(config.encoding, 'strict')
+ unick = member.nick
+ # unick = member.nick.decode(config.encoding, 'strict')
except (UnicodeError, LookupError):
unick = member.nick.decode('utf-8', 'replace')
else:

Powered by Google Project Hosting