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