fixed unicode
This commit is contained in:
parent
853b4b7db8
commit
05782766e9
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ class Input(dict):
|
||||||
if target == nick:
|
if target == nick:
|
||||||
conn.msg(target, message)
|
conn.msg(target, message)
|
||||||
else:
|
else:
|
||||||
conn.msg(target, "({}) {}".format(nick, message))
|
conn.msg(target, u"({}) {}".format(nick, message))
|
||||||
|
|
||||||
def action(message, target=chan):
|
def action(message, target=chan):
|
||||||
"""sends an action to the current channel/user or a specific channel/user"""
|
"""sends an action to the current channel/user or a specific channel/user"""
|
||||||
|
|
Reference in a new issue