diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-11-15 18:04:47 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-11-15 18:04:47 +0100 |
commit | 51e537831d330576af76e00e1420ebe504feca52 (patch) | |
tree | c58d846170c3d002382c4060b6abab516829e9a1 /pyload/plugins/crypter/FilefactoryCom.py | |
parent | [Plugin] Fix typo (thx rlindner81) (diff) | |
download | pyload-51e537831d330576af76e00e1420ebe504feca52.tar.xz |
Fix cookie domain
Diffstat (limited to 'pyload/plugins/crypter/FilefactoryCom.py')
-rw-r--r-- | pyload/plugins/crypter/FilefactoryCom.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyload/plugins/crypter/FilefactoryCom.py b/pyload/plugins/crypter/FilefactoryCom.py index 9792bb9f1..cc9563ed9 100644 --- a/pyload/plugins/crypter/FilefactoryCom.py +++ b/pyload/plugins/crypter/FilefactoryCom.py @@ -21,7 +21,7 @@ class FilefactoryCom(SimpleCrypter): NAME_PATTERN = r'<h1>Files in <span>(?P<N>.+)</span></h1>' PAGES_PATTERN = r'data-paginator-totalPages="(\d+)"' - COOKIES = [(".filefactory.com", "locale", "en_US.utf8")] + COOKIES = [("filefactory.com", "locale", "en_US.utf8")] def loadPage(self, page_n): |