summaryrefslogtreecommitdiffstats
path: root/pyload/plugins/container/CCF.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyload/plugins/container/CCF.py')
-rw-r--r--pyload/plugins/container/CCF.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/pyload/plugins/container/CCF.py b/pyload/plugins/container/CCF.py
index fe43bda7c..b21339bec 100644
--- a/pyload/plugins/container/CCF.py
+++ b/pyload/plugins/container/CCF.py
@@ -13,17 +13,17 @@ from pyload.utils import safe_join
class CCF(Container):
- __name__ = "CCF"
+ __name__ = "CCF"
__version__ = "0.2"
__pattern__ = r'.+\.ccf'
__description__ = """CCF container decrypter plugin"""
- __authors__ = [("Willnix", "Willnix@pyload.org")]
+ __license__ = "GPLv3"
+ __authors__ = [("Willnix", "Willnix@pyload.org")]
def decrypt(self, pyfile):
-
infile = pyfile.url.replace("\n", "")
opener = build_opener(MultipartPostHandler)
@@ -36,7 +36,7 @@ class CCF(Container):
tempdlc_name = safe_join(download_folder, "tmp_%s.dlc" % pyfile.name)
tempdlc = open(tempdlc_name, "w")
- tempdlc.write(re.search(r'<dlc>(.*)</dlc>', tempdlc_content, re.DOTALL).group(1))
+ tempdlc.write(re.search(r'<dlc>(.*)</dlc>', tempdlc_content, re.S).group(1))
tempdlc.close()
self.urls = [tempdlc_name]