summaryrefslogtreecommitdiffstats
path: root/module/plugins/hooks/SimplydebridComHook.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/hooks/SimplydebridComHook.py')
-rw-r--r--module/plugins/hooks/SimplydebridComHook.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hooks/SimplydebridComHook.py b/module/plugins/hooks/SimplydebridComHook.py
index 9e29a0c9f..228df2af4 100644
--- a/module/plugins/hooks/SimplydebridComHook.py
+++ b/module/plugins/hooks/SimplydebridComHook.py
@@ -6,7 +6,7 @@ from module.plugins.internal.MultiHook import MultiHook
class SimplydebridComHook(MultiHook):
__name__ = "SimplydebridComHook"
__type__ = "hook"
- __version__ = "0.04"
+ __version__ = "0.05"
__config__ = [("pluginmode" , "all;listed;unlisted", "Use for plugins" , "all"),
("pluginlist" , "str" , "Plugin list (comma separated)", "" ),
@@ -18,6 +18,6 @@ class SimplydebridComHook(MultiHook):
__authors__ = [("Kagenoshin", "kagenoshin@gmx.ch")]
- def getHosters(self):
+ def get_hosters(self):
html = self.load("http://simply-debrid.com/api.php", get={'list': 1})
return [x.strip() for x in html.rstrip(';').replace("\"", "").split(";")]