diff options
author | Walter Purcaro <vuolter@gmail.com> | 2013-10-16 15:27:36 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2013-10-16 15:27:36 +0200 |
commit | ec79ab7187eda441f3c3194b836967049ca23cc9 (patch) | |
tree | 064d4f6085cd1050181120ffeeff381082ca3c81 /module/plugins/hoster/PutlockerCom.py | |
parent | Merge pull request #328 from vuolter/s/dead_crypters (diff) | |
download | pyload-ec79ab7187eda441f3c3194b836967049ca23cc9.tar.xz |
Hosters: replaced line continuation with brackets
Diffstat (limited to 'module/plugins/hoster/PutlockerCom.py')
-rw-r--r-- | module/plugins/hoster/PutlockerCom.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/PutlockerCom.py b/module/plugins/hoster/PutlockerCom.py index 0b049b28d..80d836655 100644 --- a/module/plugins/hoster/PutlockerCom.py +++ b/module/plugins/hoster/PutlockerCom.py @@ -55,8 +55,8 @@ class PutlockerCom(SimpleHoster): post_data = {"hash": hash_data.group(1), "confirm": "Continue+as+Free+User"} self.html = self.load(self.pyfile.url, post=post_data) - if ">You have exceeded the daily stream limit for your country\\. You can wait until tomorrow" in self.html or \ - "(>This content server has been temporarily disabled for upgrades|Try again soon\\. You can still download it below\\.<)" in self.html: + if (">You have exceeded the daily stream limit for your country\\. You can wait until tomorrow" in self.html or + "(>This content server has been temporarily disabled for upgrades|Try again soon\\. You can still download it below\\.<)" in self.html): self.retry(wait_time=7200, reason="Download limit exceeded or server disabled") # 2 hours wait patterns = (r'(/get_file\.php\?id=[A-Z0-9]+&key=[A-Za-z0-9=]+&original=1)', |