diff options
author | 2014-04-11 12:15:32 +0200 | |
---|---|---|
committer | 2014-04-21 17:19:42 +0200 | |
commit | 088e0e38fd7419951d31bbc389c95d1c662e550f (patch) | |
tree | 7e30ff7ff49705a5d6c200dd4bfd795a6ccb6c1c /pyload/plugins/addons/IRCInterface.py | |
parent | Fix __type__ for crypters (diff) | |
download | pyload-088e0e38fd7419951d31bbc389c95d1c662e550f.tar.xz |
Fix __config__
Merges vuolter/pyload@83ff313
(cherry picked from commit d27113cef108461e2363cc4c88c4a1d01222c9e9)
Conflicts:
module/plugins/Hook.py
module/plugins/hooks/MultiDebridCom.py
module/plugins/hooks/UnrestrictLi.py
Diffstat (limited to 'pyload/plugins/addons/IRCInterface.py')
-rw-r--r-- | pyload/plugins/addons/IRCInterface.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/pyload/plugins/addons/IRCInterface.py b/pyload/plugins/addons/IRCInterface.py index 2e26fee1d..683e6208e 100644 --- a/pyload/plugins/addons/IRCInterface.py +++ b/pyload/plugins/addons/IRCInterface.py @@ -38,16 +38,16 @@ class IRCInterface(Thread, Addon): __name__ = "IRCInterface" __version__ = "0.11" __description__ = """Connect to irc and let owner perform different tasks""" - __config__ = [("activated", "bool", "Activated", "False"), + __config__ = [("activated", "bool", "Activated", False), ("host", "str", "IRC-Server Address", "Enter your server here!"), - ("port", "int", "IRC-Server Port", "6667"), + ("port", "int", "IRC-Server Port", 6667), ("ident", "str", "Clients ident", "pyload-irc"), ("realname", "str", "Realname", "pyload-irc"), ("nick", "str", "Nickname the Client will take", "pyLoad-IRC"), ("owner", "str", "Nickname the Client will accept commands from", "Enter your nick here!"), - ("info_file", "bool", "Inform about every file finished", "False"), - ("info_pack", "bool", "Inform about every package finished", "True"), - ("captcha", "bool", "Send captcha requests", "True")] + ("info_file", "bool", "Inform about every file finished", False), + ("info_pack", "bool", "Inform about every package finished", True), + ("captcha", "bool", "Send captcha requests", True)] __author_name__ = "Jeix" __author_mail__ = "Jeix@hasnomail.com" |