diff options
Diffstat (limited to 'module/plugins/hooks/EasybytezComHook.py')
-rw-r--r-- | module/plugins/hooks/EasybytezComHook.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hooks/EasybytezComHook.py b/module/plugins/hooks/EasybytezComHook.py index f96668245..9e33bbad0 100644 --- a/module/plugins/hooks/EasybytezComHook.py +++ b/module/plugins/hooks/EasybytezComHook.py @@ -22,9 +22,9 @@ class EasybytezComHook(MultiHook): def get_hosters(self): - user, data = self.account.select_account() + user, data = self.account.select() html = self.load("http://www.easybytez.com", - req=self.account.get_account_request(user)) + req=self.account.get_request(user)) return re.search(r'</textarea>\s*Supported sites:(.*)', html).group(1).split(',') |