diff --git a/main.py b/main.py index c6fc861..9dc099a 100755 --- a/main.py +++ b/main.py @@ -152,11 +152,11 @@ def hello_command(self, message=None): # Asking for help def help_command(self, message=None): message = xmpp.Message(self.request.POST) - help_msg = "It's not even alpha ready, but you could play with following commands:\n" \ - "/hello\n about me\n" \ - "/subscribe \n/unsubscribe \n subscribe or unsubscribe to a feed\n" \ - "/ls \n list subscriptions, default to page 1\n" \ - "/help\n print help info\n" + help_msg = "It's not even alpha ready, but you could play with following commands:\n\n" \ + "/hello -> about me\n\n" \ + "/subscribe \n/unsubscribe -> subscribe or unsubscribe to a feed\n\n" \ + "/ls -> list subscriptions, default to page 1\n\n" \ + "/help -> get help message\n" message.reply(help_msg) message.reply(message.body)