summaryrefslogtreecommitdiffstats
path: root/module/plugins/hooks/IRCInterface.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/IRCInterface.py
parentUpdate plugins to last changes (diff)
downloadpyload-34984dae733c3f3d47b41a0acfba3724d53c65a1.tar.xz
Code cosmetics: plugin class attributes
Diffstat (limited to 'module/plugins/hooks/IRCInterface.py')
-rw-r--r--module/plugins/hooks/IRCInterface.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/module/plugins/hooks/IRCInterface.py b/module/plugins/hooks/IRCInterface.py
index bc99d708b..5ff24cc79 100644
--- a/module/plugins/hooks/IRCInterface.py
+++ b/module/plugins/hooks/IRCInterface.py
@@ -17,8 +17,8 @@ from module.utils import formatSize
class IRCInterface(Thread, Hook):
- __name__ = "IRCInterface"
- __type__ = "hook"
+ __name__ = "IRCInterface"
+ __type__ = "hook"
__version__ = "0.11"
__config__ = [("host", "str", "IRC-Server Address", "Enter your server here!"),
@@ -32,8 +32,8 @@ class IRCInterface(Thread, Hook):
("captcha", "bool", "Send captcha requests", True)]
__description__ = """Connect to irc and let owner perform different tasks"""
- __license__ = "GPLv3"
- __authors__ = [("Jeix", "Jeix@hasnomail.com")]
+ __license__ = "GPLv3"
+ __authors__ = [("Jeix", "Jeix@hasnomail.com")]
def __init__(self, core, manager):