diff options
Diffstat (limited to 'module/plugins/hooks')
-rw-r--r-- | module/plugins/hooks/EasybytezComHook.py | 2 | ||||
-rw-r--r-- | module/plugins/hooks/RehostToHook.py | 2 | ||||
-rw-r--r-- | module/plugins/hooks/SmoozedComHook.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/module/plugins/hooks/EasybytezComHook.py b/module/plugins/hooks/EasybytezComHook.py index 9e33bbad0..6f53619ac 100644 --- a/module/plugins/hooks/EasybytezComHook.py +++ b/module/plugins/hooks/EasybytezComHook.py @@ -22,7 +22,7 @@ class EasybytezComHook(MultiHook): def get_hosters(self): - user, data = self.account.select() + user, info = self.account.select() html = self.load("http://www.easybytez.com", req=self.account.get_request(user)) diff --git a/module/plugins/hooks/RehostToHook.py b/module/plugins/hooks/RehostToHook.py index 58367e241..7bb27e820 100644 --- a/module/plugins/hooks/RehostToHook.py +++ b/module/plugins/hooks/RehostToHook.py @@ -20,7 +20,7 @@ class RehostToHook(MultiHook): def get_hosters(self): - user, data = self.account.select() + user, info = self.account.select() html = self.load("http://rehost.to/api.php", get={'cmd' : "get_supported_och_dl", 'long_ses': self.account.get_data(user)['session']}) diff --git a/module/plugins/hooks/SmoozedComHook.py b/module/plugins/hooks/SmoozedComHook.py index 6b9b688ff..b9825b223 100644 --- a/module/plugins/hooks/SmoozedComHook.py +++ b/module/plugins/hooks/SmoozedComHook.py @@ -20,5 +20,5 @@ class SmoozedComHook(MultiHook): def get_hosters(self): - user, data = self.account.select() + user, info = self.account.select() return self.account.get_data(user)['hosters'] |