diff options
author | Jeix <devnull@localhost> | 2010-11-25 14:33:15 +0100 |
---|---|---|
committer | Jeix <devnull@localhost> | 2010-11-25 14:33:15 +0100 |
commit | 0e6a798342985f1e4074896e45363c3f5acceacc (patch) | |
tree | 9a8aca09fe18c958f221cda480222fe26709410b /module/plugins/hoster/DepositfilesCom.py | |
parent | gui: reverse tab order (diff) | |
download | pyload-0e6a798342985f1e4074896e45363c3f5acceacc.tar.xz |
depositfiles, fileserve free fixes
Diffstat (limited to 'module/plugins/hoster/DepositfilesCom.py')
-rw-r--r-- | module/plugins/hoster/DepositfilesCom.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/hoster/DepositfilesCom.py b/module/plugins/hoster/DepositfilesCom.py index d3d31a9b8..c07178dc9 100644 --- a/module/plugins/hoster/DepositfilesCom.py +++ b/module/plugins/hoster/DepositfilesCom.py @@ -57,7 +57,7 @@ class DepositfilesCom(Hoster): self.html = self.load(tmp_url, post={"gateway_result":"1"}) - m = re.search(r'Attention! You used up your limit for file downloading! Please try in\s+(\d+) minute', self.html) + m = re.search(r'Attention! You used up your limit for file downloading! Please try in\s+(\d+)', self.html) if m is not None: wait_time = int( m.group(1) ) self.log.info( "%s: Traffic used up. Waiting %d minutes." % (self.__name__, wait_time) ) |