dr.botzo: only warn when config specifies no modules

this is still 100% wrong, but it's not an error, per se
This commit is contained in:
Brian S. Stephan 2012-07-26 20:43:51 -05:00
parent 257c9d446e
commit 04369f95cf
1 changed files with 1 additions and 1 deletions

View File

@ -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()