From f9c16cb874d7bda3635537a98fe22cf9fda0c2ef Mon Sep 17 00:00:00 2001 From: Walter Purcaro Date: Fri, 11 Apr 2014 12:28:41 +0200 Subject: Fix some container __pattern__ Merges vuolter/pyload@770a11f (cherry picked from commit 614e1de2aaccbd2d7fa2c3a099cf5e36673ae322) Conflicts: module/plugins/container/LinkList.py --- pyload/plugins/crypter/CCF.py | 2 +- pyload/plugins/crypter/RSDF.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyload/plugins/crypter/CCF.py b/pyload/plugins/crypter/CCF.py index 5a4a11543..393b16d3f 100644 --- a/pyload/plugins/crypter/CCF.py +++ b/pyload/plugins/crypter/CCF.py @@ -12,7 +12,7 @@ from os.path import exists, join class CCF(Crypter): __name__ = "CCF" __version__ = "0.2" - __pattern__ = r'(?!http://).*\.ccf$' + __pattern__ = r'.+\.ccf' __description__ = """CCF container decrypter plugin""" __author_name__ = "Willnix" __author_mail__ = "Willnix@pyload.org" diff --git a/pyload/plugins/crypter/RSDF.py b/pyload/plugins/crypter/RSDF.py index 7e5f93ea4..9b2c070a5 100644 --- a/pyload/plugins/crypter/RSDF.py +++ b/pyload/plugins/crypter/RSDF.py @@ -9,7 +9,7 @@ from module.plugins.Crypter import Crypter class RSDF(Crypter): __name__ = "RSDF" __version__ = "0.21" - __pattern__ = r'.*\.rsdf' + __pattern__ = r'.+\.rsdf' __description__ = """RSDF container decrypter plugin""" __author_name__ = ("RaNaN", "spoob") __author_mail__ = ("RaNaN@pyload.org", "spoob@pyload.org") -- cgit v1.2.3