From 5f58c4384be9457a57d1382dae78a5a636377b29 Mon Sep 17 00:00:00 2001 From: Griatch Date: Fri, 28 Aug 2009 16:01:21 +0000 Subject: [PATCH] IRC_ENABLED was accidentally left to True in default config file. Fixed. --- src/config_defaults.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config_defaults.py b/src/config_defaults.py index 123d94809..d186dacec 100644 --- a/src/config_defaults.py +++ b/src/config_defaults.py @@ -128,7 +128,7 @@ Obs - make sure the IRC network allows bots. """ #Activate the IRC bot. -IRC_ENABLED = True +IRC_ENABLED = False #Which IRC network (e.g. irc.freenode.net) IRC_NETWORK = "irc.freenode.net" #Which IRC port to connect to (e.g. 6667)