From 05782766e9e61dacbe0874735bff4b734552a265 Mon Sep 17 00:00:00 2001 From: Luke Rogers Date: Mon, 7 Oct 2013 21:11:01 +1300 Subject: [PATCH] fixed unicode --- core/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/main.py b/core/main.py index 0ff53e4..0054b0a 100755 --- a/core/main.py +++ b/core/main.py @@ -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"""