fixed unicode

This commit is contained in:
Luke Rogers 2013-10-07 21:11:01 +13:00
parent 853b4b7db8
commit 05782766e9
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ class Input(dict):
if target == nick:
conn.msg(target, message)
else:
conn.msg(target, "({}) {}".format(nick, message))
conn.msg(target, u"({}) {}".format(nick, message))
def action(message, target=chan):
"""sends an action to the current channel/user or a specific channel/user"""