diff options
| author | 2015-06-21 08:50:26 +0200 | |
|---|---|---|
| committer | 2015-06-24 22:43:08 +0200 | |
| commit | e4fb45b22d36595839e8f638a3f0a4669dba3e8d (patch) | |
| tree | 549ba2a4f6e23a7178b8f91c79e0c037b36412ca /module/plugins/hooks/OverLoadMeHook.py | |
| parent | Spare code cosmetics (3) (diff) | |
| download | pyload-e4fb45b22d36595839e8f638a3f0a4669dba3e8d.tar.xz | |
Spare code cosmetics (4)
Diffstat (limited to 'module/plugins/hooks/OverLoadMeHook.py')
| -rw-r--r-- | module/plugins/hooks/OverLoadMeHook.py | 17 | 
1 files changed, 6 insertions, 11 deletions
| diff --git a/module/plugins/hooks/OverLoadMeHook.py b/module/plugins/hooks/OverLoadMeHook.py index a618938a4..39401000d 100644 --- a/module/plugins/hooks/OverLoadMeHook.py +++ b/module/plugins/hooks/OverLoadMeHook.py @@ -8,12 +8,10 @@ class OverLoadMeHook(MultiHook):      __type__    = "hook"      __version__ = "0.04" -    __config__ = [("pluginmode"    , "all;listed;unlisted", "Use for plugins"                     , "all"), -                  ("pluginlist"    , "str"                , "Plugin list (comma separated)"       , ""   ), -                  ("revertfailed"  , "bool"               , "Revert to standard download if fails", True ), -                  ("reload"        , "bool"               , "Reload plugin list"                  , True ), -                  ("reloadinterval", "int"                , "Reload interval in hours"            , 12   ), -                  ("ssl"           , "bool"               , "Use HTTPS"                           , True )] +    __config__ = [("pluginmode"    , "all;listed;unlisted", "Use for plugins"              , "all"), +                  ("pluginlist"    , "str"                , "Plugin list (comma separated)", ""   ), +                  ("reload"        , "bool"               , "Reload plugin list"           , True ), +                  ("reloadinterval", "int"                , "Reload interval in hours"     , 12   )]      __description__ = """Over-Load.me hook plugin"""      __license__     = "GPLv3" @@ -21,9 +19,6 @@ class OverLoadMeHook(MultiHook):      def getHosters(self): -        https = "https" if self.getConfig('ssl') else "http" -        html = self.load(https + "://api.over-load.me/hoster.php", -                      get={'auth': "0001-cb1f24dadb3aa487bda5afd3b76298935329be7700cd7-5329be77-00cf-1ca0135f"}).replace("\"", "").strip() -        self.logDebug("Hosterlist", html) - +        html = self.load("https://api.over-load.me/hoster.php", +                         get={'auth': "0001-cb1f24dadb3aa487bda5afd3b76298935329be7700cd7-5329be77-00cf-1ca0135f"}).replace("\"", "").strip()          return [x.strip() for x in html.split(",") if x.strip()] | 
