mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-23 11:09:23 +01:00
Fix doc of NestedCommandsIrcProxy.reply.
This commit is contained in:
parent
bfb305e2b8
commit
5f8e45aaa8
@ -837,19 +837,21 @@ class NestedCommandsIrcProxy(ReplyIrcProxy):
|
||||
|
||||
def reply(self, s, noLengthCheck=False, prefixNick=None,
|
||||
action=None, private=None, notice=None, to=None, msg=None):
|
||||
"""reply(s) -> replies to msg with s
|
||||
"""
|
||||
|
||||
reply(s) -> replies to msg with s
|
||||
|
||||
Keyword arguments:
|
||||
noLengthCheck=False: True if the length shouldn't be checked
|
||||
(used for 'more' handling)
|
||||
prefixNick=True: False if the nick shouldn't be prefixed to the
|
||||
reply.
|
||||
action=False: True if the reply should be an action.
|
||||
private=False: True if the reply should be in private.
|
||||
notice=False: True if the reply should be noticed when the
|
||||
bot is configured to do so.
|
||||
to=<nick|channel>: The nick or channel the reply should go to.
|
||||
Defaults to msg.args[0] (or msg.nick if private)
|
||||
* `noLengthCheck=False`: True if the length shouldn't be checked
|
||||
(used for 'more' handling)
|
||||
* `prefixNick=True`: False if the nick shouldn't be prefixed to the
|
||||
reply.
|
||||
* `action=False`: True if the reply should be an action.
|
||||
* `private=False`: True if the reply should be in private.
|
||||
* `notice=False`: True if the reply should be noticed when the
|
||||
bot is configured to do so.
|
||||
* `to=<nick|channel>`: The nick or channel the reply should go to.
|
||||
Defaults to msg.args[0] (or msg.nick if private)
|
||||
"""
|
||||
# These use and or or based on whether or not they default to True or
|
||||
# False. Those that default to True use and; those that default to
|
||||
|
Loading…
Reference in New Issue
Block a user