diff options
author | lassulus <lassulus@googlemail.com> | 2013-12-16 16:28:38 +0100 |
---|---|---|
committer | lassulus <lassulus@googlemail.com> | 2013-12-16 16:28:38 +0100 |
commit | 5f6ded8bcbc4700b4547c4d1285e71e270908b2f (patch) | |
tree | c8038268c25c4b2a7f48e9b094de05eec6f66c00 /Reaktor/IRC | |
parent | 8e7f6b0c15db735fd289b304cb9fa5337f53c4fc (diff) |
Reaktor/IRC: encode harder
Diffstat (limited to 'Reaktor/IRC')
-rwxr-xr-x | Reaktor/IRC/asybot.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Reaktor/IRC/asybot.py b/Reaktor/IRC/asybot.py index 7fcc2ea6..9a183413 100755 --- a/Reaktor/IRC/asybot.py +++ b/Reaktor/IRC/asybot.py @@ -133,7 +133,7 @@ class asybot(asychat): '^(\w+|\*):\s*(\w+)(?:\s+(.*))?$', rest) except (ValueError, Exception): if search(self.nickname, rest): - PRIVMSG('I\'m so famous') + PRIVMSG('I\'m so famous'.encode(encoding='UTF-8')) return # ignore if _handle == self.nickname or _handle == '*': |