summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/DepositfilesCom.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/hoster/DepositfilesCom.py')
-rw-r--r--module/plugins/hoster/DepositfilesCom.py2
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) )