Revert "remove even more unicode()/encode() calls."
turns out there was a reason why i did this one.
This reverts commit 1afa34554f
.
This commit is contained in:
parent
1afa34554f
commit
898a4aa6c0
|
@ -52,15 +52,21 @@ class DrBotServerConnection(irclib.ServerConnection):
|
|||
splitpos = text.rfind(' ', 0, splitspace)
|
||||
splittext = text[0:splitpos] + ' ' + splitter
|
||||
text = splitter + ' ' + text[splitpos+1:]
|
||||
self.send_raw("PRIVMSG %s :%s" % (target, splittext))
|
||||
self.send_raw("PRIVMSG %s :%s" % (target, unicode(splittext).encode('utf-8')))
|
||||
|
||||
times = times + 1
|
||||
if times >= 4:
|
||||
return
|
||||
|
||||
# done splitting
|
||||
try:
|
||||
text = unicode(text).encode('utf-8')
|
||||
except UnicodeDecodeError: pass
|
||||
self.send_raw("PRIVMSG %s :%s" % (target, text))
|
||||
else:
|
||||
try:
|
||||
text = unicode(text).encode('utf-8')
|
||||
except UnicodeDecodeError: pass
|
||||
self.send_raw("PRIVMSG %s :%s" % (target, text))
|
||||
|
||||
class DrBotIRC(irclib.IRC):
|
||||
|
|
Loading…
Reference in New Issue