bots: zulip_bot_output.py: Check for absence of handler_class in bot.

This commit is contained in:
neiljp (Neil Pilgrim) 2017-10-02 13:53:53 -07:00 committed by Tim Abbott
parent 8e9c6cd22e
commit 8987ec23e2

View file

@ -68,7 +68,11 @@ def main():
sys.exit(1)
message = {'content': args.message, 'sender_email': 'foo_sender@zulip.com'}
message_handler = lib_module.handler_class()
try:
message_handler = lib_module.handler_class()
except AttributeError:
print("This module does not appear to have a bot handler_class specified.")
sys.exit(1)
with patch('zulip.Client') as mock_client:
mock_bot_handler = ExternalBotHandler(mock_client, bot_dir)