diff --git a/contrib_bots/bots/help/help.py b/contrib_bots/bots/help/help.py index 3fc2717..1e07f71 100644 --- a/contrib_bots/bots/help/help.py +++ b/contrib_bots/bots/help/help.py @@ -12,11 +12,7 @@ class HelpHandler(object): ''' def handle_message(self, message, client, state_handler): - help_content = ''' - Info on Zulip can be found here: - https://github.com/zulip/zulip - '''.strip() - + help_content = "Info on Zulip can be found here:\nhttps://github.com/zulip/zulip" client.send_reply(message, help_content) handler_class = HelpHandler