diff options
| author | 2010-08-27 17:07:33 +0200 | |
|---|---|---|
| committer | 2010-08-27 17:07:33 +0200 | |
| commit | a33d8062833d1bfec4777145cc484c1d6b9e141f (patch) | |
| tree | 7d815f80cdcced2d36144b9b71760278d29ed007 /module/plugins/accounts | |
| parent | locale fixes (diff) | |
| download | pyload-a33d8062833d1bfec4777145cc484c1d6b9e141f.tar.xz | |
some automatic fixes
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: | 
