diff options
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" | 
