diff options
Diffstat (limited to 'sleekxmpp/plugins/xep_0066/oob.py')
-rw-r--r-- | sleekxmpp/plugins/xep_0066/oob.py | 4 |
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, |