From 3b5ec5f879b1d7eafe8bbf8d01d78c4a72d674cf Mon Sep 17 00:00:00 2001 From: Ryan Hitchman Date: Sun, 22 Nov 2009 16:19:33 -0700 Subject: [PATCH] should fix log printing problems --- plugins/log.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/log.py b/plugins/log.py index dd528e9..10d2325 100644 --- a/plugins/log.py +++ b/plugins/log.py @@ -105,4 +105,4 @@ def log(bot, input): fd = get_log_fd(bot.persist_dir, input.server, input.chan) fd.write(timestamp + ' ' + beau + '\n') - print u'%s %s %s' % (timestamp, input.chan, beau) + print timestamp, input.chan, beau