From 04369f95cf1b93eb59f8a910ca77f8720f91d4c0 Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Thu, 26 Jul 2012 20:43:51 -0500 Subject: [PATCH] dr.botzo: only warn when config specifies no modules this is still 100% wrong, but it's not an error, per se --- dr.botzo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dr.botzo.py b/dr.botzo.py index d71d8e9..75e9a1b 100644 --- a/dr.botzo.py +++ b/dr.botzo.py @@ -92,7 +92,7 @@ try: for mod in mods: irc.load_module(mod) except NoOptionError as e: - log.error("You seem to be missing a modlist config option, which you probably wanted.") + log.warning("You seem to be missing a modlist config option, which you probably wanted.") # loop forever irc.process_forever()