Solve encoding errors through excessive encoding!

This commit is contained in:
dave 2014-10-02 20:55:19 -07:00
parent 3600c715b6
commit 13c5e5794e
3 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
host: 127.0.0.1
host: 10.0.3.14
username: root
password: root
database: pyircbot
password: droids
database: pyircbot_dev

View File

@ -8,14 +8,14 @@ user:
hostname: pyircbot3.domain.com
realname: pyircbot3
ident:
enable: yes
enable: no
to: nickserv
command: identify %(password)s
ghost: yes
ghost_to: nickserv
ghost_cmd: ghost %(nick)s %(password)s
channels:
- "#pyircbot3"
- "#xmopx"
privatechannels:
to: chanserv
command: invite %(channel)s

View File

@ -154,7 +154,7 @@ class PyIRCBot(asynchat.async_chat):
:type text: str"""
if self.connected:
self.log.debug(">> "+text)
self.send( (text+"\r\n").encode("ascii"))
self.send( (text+"\r\n").encode("UTF-8").decode().encode("UTF-8"))
else:
self.log.warning("Send attempted while disconnected. >> "+text)