diff options
author | 2014-11-15 18:04:47 +0100 | |
---|---|---|
committer | 2014-11-15 18:04:47 +0100 | |
commit | 51e537831d330576af76e00e1420ebe504feca52 (patch) | |
tree | c58d846170c3d002382c4060b6abab516829e9a1 /pyload/plugins/hoster/UploadheroCom.py | |
parent | [Plugin] Fix typo (thx rlindner81) (diff) | |
download | pyload-51e537831d330576af76e00e1420ebe504feca52.tar.xz |
Fix cookie domain
Diffstat (limited to 'pyload/plugins/hoster/UploadheroCom.py')
-rw-r--r-- | pyload/plugins/hoster/UploadheroCom.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyload/plugins/hoster/UploadheroCom.py b/pyload/plugins/hoster/UploadheroCom.py index 2aab44c9f..97100b17d 100644 --- a/pyload/plugins/hoster/UploadheroCom.py +++ b/pyload/plugins/hoster/UploadheroCom.py @@ -25,7 +25,7 @@ class UploadheroCom(SimpleHoster): SIZE_PATTERN = r'Taille du fichier : </span><strong>(?P<S>.*?)</strong>' OFFLINE_PATTERN = r'<p class="titre_dl_2">|<div class="raison"><strong>Le lien du fichier ci-dessus n\'existe plus.' - COOKIES = [(".uploadhero.co", "lang", "en")] + COOKIES = [("uploadhero.co", "lang", "en")] IP_BLOCKED_PATTERN = r'href="(/lightbox_block_download\.php\?min=.*?)"' IP_WAIT_PATTERN = r'<span id="minutes">(\d+)</span>.*\s*<span id="seconds">(\d+)</span>' |