diff options
author | Maxime Buquet <pep@bouah.net> | 2020-10-01 13:08:44 +0200 |
---|---|---|
committer | Maxime Buquet <pep@bouah.net> | 2020-10-01 13:08:44 +0200 |
commit | 4dbabfa211227dc4058b7acb086c06a0330b9c6d (patch) | |
tree | a811f41a33b6987a775b0e03b63470d86b551251 | |
parent | 9b9ace97f498de8101588a598ca8849e53a9a882 (diff) | |
parent | 57c8196d9cfa78749a6a63a370c9378740afc20e (diff) | |
download | slixmpp-4dbabfa211227dc4058b7acb086c06a0330b9c6d.tar.gz slixmpp-4dbabfa211227dc4058b7acb086c06a0330b9c6d.tar.bz2 slixmpp-4dbabfa211227dc4058b7acb086c06a0330b9c6d.tar.xz slixmpp-4dbabfa211227dc4058b7acb086c06a0330b9c6d.zip |
Merge branch 'stanzabase-docstring' into 'master'
StanzaBase.send: remove inexisting param in docstring -- thanks elghinn
See merge request poezio/slixmpp!61
-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): |