diff options
author | Maxime “pep” Buquet <pep@bouah.net> | 2020-10-01 13:06:37 +0200 |
---|---|---|
committer | Maxime “pep” Buquet <pep@bouah.net> | 2020-10-01 13:06:37 +0200 |
commit | 57c8196d9cfa78749a6a63a370c9378740afc20e (patch) | |
tree | a811f41a33b6987a775b0e03b63470d86b551251 | |
parent | 9b9ace97f498de8101588a598ca8849e53a9a882 (diff) | |
download | slixmpp-57c8196d9cfa78749a6a63a370c9378740afc20e.tar.gz slixmpp-57c8196d9cfa78749a6a63a370c9378740afc20e.tar.bz2 slixmpp-57c8196d9cfa78749a6a63a370c9378740afc20e.tar.xz slixmpp-57c8196d9cfa78749a6a63a370c9378740afc20e.zip |
StanzaBase.send: remove inexisting param in docstring -- thanks elghinn
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
-rw-r--r-- | slixmpp/xmlstream/stanzabase.py | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/slixmpp/xmlstream/stanzabase.py b/slixmpp/xmlstream/stanzabase.py index f45e4b96..7eaf78a5 100644 --- a/slixmpp/xmlstream/stanzabase.py +++ b/slixmpp/xmlstream/stanzabase.py @@ -1497,12 +1497,7 @@ class StanzaBase(ElementBase): self.name) def send(self): - """Queue the stanza to be sent on the XML stream. - - :param bool now: Indicates if the queue should be skipped and the - stanza sent immediately. Useful for stream - initialization. Defaults to ``False``. - """ + """Queue the stanza to be sent on the XML stream.""" self.stream.send(self) def __copy__(self): |