diff options
| author | 2012-02-13 14:36:21 +0100 | |
|---|---|---|
| committer | 2012-02-13 14:36:21 +0100 | |
| commit | 0a453a4ae0294910eb8a1076d9f291b78c7e7eb3 (patch) | |
| tree | 47a64582b91dc69e417f7af10f988b5cea5b40ed /module/plugins/Account.py | |
| parent | If the account is not yet aware of `trafficleft`, force an update to the acco... (diff) | |
| download | pyload-0a453a4ae0294910eb8a1076d9f291b78c7e7eb3.tar.xz | |
little account, hoster fix
Diffstat (limited to 'module/plugins/Account.py')
| -rw-r--r-- | module/plugins/Account.py | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/module/plugins/Account.py b/module/plugins/Account.py index 704299827..323c8b545 100644 --- a/module/plugins/Account.py +++ b/module/plugins/Account.py @@ -152,11 +152,11 @@ class Account(Base, AccountInfo):          return self.core.requestFactory.getRequest(self.__name__, self.cj)      def getDownloadSettings(self): -        """ Can be overwritten to change download settings. Default is no chunkLimit, multiDL, resumeDownload +        """ Can be overwritten to change download settings. Default is no chunkLimit, max dl limit, resumeDownload -        :return: (chunkLimit, multiDL, resumeDownload) / (int,bool,bool) +        :return: (chunkLimit, limitDL, resumeDownload) / (int, int ,bool)          """ -        return -1, True, True +        return -1, 0, True      @lock      def getAccountInfo(self, force=False): | 
