From 36a437f61f585a130357c5b97c0178889b75d1ed Mon Sep 17 00:00:00 2001 From: Schnaubelt Date: Fri, 21 Dec 2012 14:17:36 -0800 Subject: [PATCH] Made a small but subtle change. --- nameless-bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nameless-bot.py b/nameless-bot.py index 99b739d..36f2e9e 100644 --- a/nameless-bot.py +++ b/nameless-bot.py @@ -40,7 +40,7 @@ while True : try: data = irc.recv ( 4096 ).decode ( "UTF-8" ).replace ( "\r\n", "" ) except UnicodeDecodeError: - say("This bot encountered a unicode decoding error.") + print("This bot encountered a unicode decoding error.") print ( strftime ( "%H:%M:%S" ) + ' === ' + data) if data.split ( ' ' )[1] == 'NICK': botnick = data.split ( ' ' )[ 2 ].split ( ':' )[ 0 ] -- 2.11.4.GIT