Merge pull request #27526 from eliasp/2015.8-modules.slack_notify-doc-params

Add missing newlines before param listing to fix doc rendering
This commit is contained in:
Mike Place 2015-09-30 09:19:04 -06:00
commit 2a4c11ae24

View file

@ -159,6 +159,7 @@ def list_rooms(api_key=None):
def list_users(api_key=None):
'''
List all Slack users.
:param api_key: The Slack admin api key.
:return: The user list.
@ -176,6 +177,7 @@ def list_users(api_key=None):
def find_room(name, api_key=None):
'''
Find a room by name and return it.
:param name: The room name.
:param api_key: The Slack admin api key.
:return: The room object.
@ -207,6 +209,7 @@ def find_room(name, api_key=None):
def find_user(name, api_key=None):
'''
Find a user by name and return it.
:param name: The user name.
:param api_key: The Slack admin api key.
:return: The user object.
@ -235,6 +238,7 @@ def post_message(channel,
api_key=None):
'''
Send a message to a Slack channel.
:param channel: The channel name, either will work.
:param message: The message to send to the Slack channel.
:param from_name: Specify who the message is from.