diff options
-rw-r--r-- | pyload/plugins/crypter/CCF.py | 2 | ||||
-rw-r--r-- | 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") |