summaryrefslogtreecommitdiff
path: root/sleekxmpp/plugins/xep_0066
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2012-03-11 16:32:16 -0700
committerLance Stout <lancestout@gmail.com>2012-03-11 16:34:41 -0700
commita318beded4e7402b5855378a57e867362ce3e1af (patch)
treee2187b0abc2bcf6a9be9fd8dea4177da2efe7d94 /sleekxmpp/plugins/xep_0066
parent5f4b528e6bdc238988b02b9a7d4ef55077773e76 (diff)
downloadslixmpp-a318beded4e7402b5855378a57e867362ce3e1af.tar.gz
slixmpp-a318beded4e7402b5855378a57e867362ce3e1af.tar.bz2
slixmpp-a318beded4e7402b5855378a57e867362ce3e1af.tar.xz
slixmpp-a318beded4e7402b5855378a57e867362ce3e1af.zip
Update plugin list and use correct names.
Diffstat (limited to 'sleekxmpp/plugins/xep_0066')
-rw-r--r--sleekxmpp/plugins/xep_0066/oob.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/sleekxmpp/plugins/xep_0066/oob.py b/sleekxmpp/plugins/xep_0066/oob.py
index 0e73de07..453b555c 100644
--- a/sleekxmpp/plugins/xep_0066/oob.py
+++ b/sleekxmpp/plugins/xep_0066/oob.py
@@ -23,7 +23,7 @@ log = logging.getLogger(__name__)
class xep_0066(base_plugin):
"""
- XEP-0066: Out-of-Band Data
+ XEP-0066: Out of Band Data
Out-of-Band Data is a basic method for transferring files between
XMPP agents. The URL of the resource in question is sent to the receiving
@@ -45,7 +45,7 @@ class xep_0066(base_plugin):
def plugin_init(self):
"""Start the XEP-0066 plugin."""
self.xep = '0066'
- self.description = 'Out-of-Band Transfer'
+ self.description = 'Out of Band Data'
self.stanza = stanza
self.url_handlers = {'global': self._default_handler,