summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2014-04-11 12:28:41 +0200
committerGravatar Stefano <l.stickell@yahoo.it> 2014-04-21 17:23:03 +0200
commitf9c16cb874d7bda3635537a98fe22cf9fda0c2ef (patch)
treea514138b2549492609b3dc9ba6c6610620fafe6d
parentReplace __pattern__ double quotes with single (diff)
downloadpyload-f9c16cb874d7bda3635537a98fe22cf9fda0c2ef.tar.xz
Fix some container __pattern__
Merges vuolter/pyload@770a11f (cherry picked from commit 614e1de2aaccbd2d7fa2c3a099cf5e36673ae322) Conflicts: module/plugins/container/LinkList.py
-rw-r--r--pyload/plugins/crypter/CCF.py2
-rw-r--r--pyload/plugins/crypter/RSDF.py2
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")