diff options
author | Lance Stout <lancestout@gmail.com> | 2011-12-31 01:28:41 -0500 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2011-12-31 01:28:41 -0500 |
commit | 03bc38f7e34f6f8f6d79b58477d56df8e488578c (patch) | |
tree | 326a5b6b5a906294f4849f906476c5ee88ae1367 /sleekxmpp/xmlstream | |
parent | 4e23a4e08e94db3292be41010d4da572c7ce9ee0 (diff) | |
download | slixmpp-03bc38f7e34f6f8f6d79b58477d56df8e488578c.tar.gz slixmpp-03bc38f7e34f6f8f6d79b58477d56df8e488578c.tar.bz2 slixmpp-03bc38f7e34f6f8f6d79b58477d56df8e488578c.tar.xz slixmpp-03bc38f7e34f6f8f6d79b58477d56df8e488578c.zip |
Add docs on using Iq stanzas.
Diffstat (limited to 'sleekxmpp/xmlstream')
-rw-r--r-- | sleekxmpp/xmlstream/stanzabase.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/xmlstream/stanzabase.py b/sleekxmpp/xmlstream/stanzabase.py index 389fe20c..721181a8 100644 --- a/sleekxmpp/xmlstream/stanzabase.py +++ b/sleekxmpp/xmlstream/stanzabase.py @@ -167,7 +167,7 @@ class ElementBase(object): #: For :class:`ElementBase` subclasses which are intended to be used #: as plugins, the ``plugin_attrib`` value defines the plugin name. #: Plugins may be accessed by using the ``plugin_attrib`` value as - #: the interface. An example using ``plugin_attrib = 'foo'``: + #: the interface. An example using ``plugin_attrib = 'foo'``:: #: #: register_stanza_plugin(Message, FooPlugin) #: msg = Message() |