From a049b13927fad98e2b0de893d09a5409388833ac Mon Sep 17 00:00:00 2001 From: Steven Smith Date: Mon, 12 Aug 2013 09:50:20 +0800 Subject: [PATCH] Update correction.py --- plugins/correction.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/correction.py b/plugins/correction.py index 6f2bddb..37068ab 100644 --- a/plugins/correction.py +++ b/plugins/correction.py @@ -17,7 +17,7 @@ def correction(inp, say=None, input=None, notice=None, db=None): find = splitinput[1] replace = splitinput[2] if find in last_message[1]: - say("%s meant to say: %s" % (nick, last_message[1].replace(find, replace))) + say("%s meant to say: %s" % (nick, last_message[1].replace(find, "\x02" + replace + "\x02"))) else: notice("%s can't be found in your last message" % find) else: