diff options
author | 2014-04-11 12:15:32 +0200 | |
---|---|---|
committer | 2014-04-11 12:15:32 +0200 | |
commit | d27113cef108461e2363cc4c88c4a1d01222c9e9 (patch) | |
tree | 3869f767de8b53de52a7e8fc32fa99f2b3c32409 /module/plugins/hooks/UpdateManager.py | |
parent | Fix __type__ for crypters (diff) | |
download | pyload-d27113cef108461e2363cc4c88c4a1d01222c9e9.tar.xz |
Fix __config__
Merges vuolter/pyload@83ff313
Diffstat (limited to 'module/plugins/hooks/UpdateManager.py')
-rw-r--r-- | module/plugins/hooks/UpdateManager.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hooks/UpdateManager.py b/module/plugins/hooks/UpdateManager.py index 381b38486..11e93c04d 100644 --- a/module/plugins/hooks/UpdateManager.py +++ b/module/plugins/hooks/UpdateManager.py @@ -32,8 +32,8 @@ class UpdateManager(Hook): __name__ = "UpdateManager" __version__ = "0.15" __description__ = """Checks for updates""" - __config__ = [("activated", "bool", "Activated", "True"), - ("interval", "int", "Check interval in minutes", "480"), + __config__ = [("activated", "bool", "Activated", True), + ("interval", "int", "Check interval in minutes", 480), ("debug", "bool", "Check for plugin changes when in debug mode", False)] __author_name__ = "RaNaN" __author_mail__ = "ranan@pyload.org" |