diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-10-05 11:52:56 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-10-05 11:52:56 +0200 |
commit | c6eb00c85ee7ee83621175003e6140cdddf8f35e (patch) | |
tree | 5174a3fc5c66f617c620b69e95623c4c5395c4b6 | |
parent | [XFSPAccount] COOKIES attribute support (diff) | |
download | pyload-c6eb00c85ee7ee83621175003e6140cdddf8f35e.tar.xz |
[HotfileFolderCom] Fix broken __pattern__ (thx zapp-brannigan)
-rw-r--r-- | module/plugins/crypter/HotfileFolderCom.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/crypter/HotfileFolderCom.py b/module/plugins/crypter/HotfileFolderCom.py index 733437ec2..16fa604c9 100644 --- a/module/plugins/crypter/HotfileFolderCom.py +++ b/module/plugins/crypter/HotfileFolderCom.py @@ -6,9 +6,9 @@ from module.plugins.internal.DeadCrypter import DeadCrypter class HotfileFolderCom(DeadCrypter): __name__ = "HotfileFolderCom" __type__ = "crypter" - __version__ = "0.2" + __version__ = "0.3" - __pattern__ = r'https)://(?:www\.)?hotfile\.com/list/\w+/\w+' + __pattern__ = r'https?://(?:www\.)?hotfile\.com/list/\w+/\w+' __description__ = """Hotfile.com folder decrypter plugin""" __author_name__ = "RaNaN" |