diff options
Diffstat (limited to 'module/plugins/accounts')
-rw-r--r-- | module/plugins/accounts/FileserveCom.py | 2 | ||||
-rw-r--r-- | module/plugins/accounts/HotfileCom.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/accounts/FileserveCom.py b/module/plugins/accounts/FileserveCom.py index a9b222a6a..4e865b360 100644 --- a/module/plugins/accounts/FileserveCom.py +++ b/module/plugins/accounts/FileserveCom.py @@ -48,7 +48,7 @@ class FileserveCom(Account): out.update(tmp) return out except: - return Account.getAccountInfo(user) + return Account.getAccountInfo(self, user) def login(self, user, data): req = self.core.requestFactory.getRequest(self.__name__, user) diff --git a/module/plugins/accounts/HotfileCom.py b/module/plugins/accounts/HotfileCom.py index e6e8ba517..0d3e6620f 100644 --- a/module/plugins/accounts/HotfileCom.py +++ b/module/plugins/accounts/HotfileCom.py @@ -54,7 +54,7 @@ class HotfileCom(Account): out.update(tmp) return out except: - return Account.getAccountInfo(user) + return Account.getAccountInfo(self, user) def apiCall(self, method, post={}, user=None): if user: |