summaryrefslogtreecommitdiffstats
path: root/module/plugins/hooks/XMPPInterface.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2014-10-28 16:52:10 +0100
committerGravatar Walter Purcaro <vuolter@gmail.com> 2014-10-28 16:52:10 +0100
commit34984dae733c3f3d47b41a0acfba3724d53c65a1 (patch)
treec8d970f64dacfc64cb72bf82c85d7467c99f7264 /module/plugins/hooks/XMPPInterface.py
parentUpdate plugins to last changes (diff)
downloadpyload-34984dae733c3f3d47b41a0acfba3724d53c65a1.tar.xz
Code cosmetics: plugin class attributes
Diffstat (limited to 'module/plugins/hooks/XMPPInterface.py')
-rw-r--r--module/plugins/hooks/XMPPInterface.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/module/plugins/hooks/XMPPInterface.py b/module/plugins/hooks/XMPPInterface.py
index 252aa820c..e23398023 100644
--- a/module/plugins/hooks/XMPPInterface.py
+++ b/module/plugins/hooks/XMPPInterface.py
@@ -10,8 +10,8 @@ from module.plugins.hooks.IRCInterface import IRCInterface
class XMPPInterface(IRCInterface, JabberClient):
- __name__ = "XMPPInterface"
- __type__ = "hook"
+ __name__ = "XMPPInterface"
+ __type__ = "hook"
__version__ = "0.11"
__config__ = [("jid", "str", "Jabber ID", "user@exmaple-jabber-server.org"),
@@ -23,8 +23,8 @@ class XMPPInterface(IRCInterface, JabberClient):
("captcha", "bool", "Send captcha requests", True)]
__description__ = """Connect to jabber and let owner perform different tasks"""
- __license__ = "GPLv3"
- __authors__ = [("RaNaN", "RaNaN@pyload.org")]
+ __license__ = "GPLv3"
+ __authors__ = [("RaNaN", "RaNaN@pyload.org")]
implements(IMessageHandlersProvider)