diff options
Diffstat (limited to 'pyload/plugins/addons/RehostTo.py')
-rw-r--r-- | pyload/plugins/addons/RehostTo.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pyload/plugins/addons/RehostTo.py b/pyload/plugins/addons/RehostTo.py index 52e266b02..6c3a77ca3 100644 --- a/pyload/plugins/addons/RehostTo.py +++ b/pyload/plugins/addons/RehostTo.py @@ -9,11 +9,11 @@ class RehostTo(MultiHoster): __version__ = "0.43" __type__ = "hook" - __config__ = [("activated", "bool", "Activated", "False"), + __config__ = [("activated", "bool", "Activated", False), ("hosterListMode", "all;listed;unlisted", "Use for hosters (if supported)", "all"), ("hosterList", "str", "Hoster list (comma separated)", ""), - ("unloadFailing", "bool", "Revert to stanard download if download fails", "False"), - ("interval", "int", "Reload interval in hours (0 to disable)", "24")] + ("unloadFailing", "bool", "Revert to stanard download if download fails", False), + ("interval", "int", "Reload interval in hours (0 to disable)", 24)] __description__ = """Rehost.to hook plugin""" __author_name__ = "RaNaN" |