zulip_botserver: Raise exception on wrong flaskbotrc file.

This commit is contained in:
derAnfaenger 2017-11-07 14:44:31 +01:00 committed by Tim Abbott
parent fb116259d0
commit bf72a8994a

View file

@ -42,7 +42,7 @@ def load_lib_modules():
lib_module = import_module(module_name) lib_module = import_module(module_name)
bots_lib_module[bot] = lib_module bots_lib_module[bot] = lib_module
except ImportError: except ImportError:
print("\n Import Error: Bot \"{}\" doesn't exists. Please make sure you have set up the flaskbotrc " raise ImportError("\n Import Error: Bot \"{}\" doesn't exists. Please make sure you have set up the flaskbotrc "
"file correctly.\n".format(bot)) "file correctly.\n".format(bot))
def load_bot_handlers(): def load_bot_handlers():