From 5c954b23d1007b5ebdb29b181af471315597052c Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Sun, 7 Aug 2011 02:36:13 -0400 Subject: [PATCH] syntax error fix --- bot/watcher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/watcher.py b/bot/watcher.py index c863e36..1e4152a 100644 --- a/bot/watcher.py +++ b/bot/watcher.py @@ -60,7 +60,7 @@ def _process_message(line): # Ignore messages originating from channels not in our list, to prevent # someone PMing us false data: if chan not in config.irc["watcher"]["channels"]: - continue + return msg = ' '.join(line[3:])[1:] rc = RC(msg) # new RC object to store this event's data