summaryrefslogtreecommitdiffstats
path: root/module/plugins/container/CCF.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2014-04-11 12:18:22 +0200
committerGravatar Stefano <l.stickell@yahoo.it> 2014-04-11 12:18:22 +0200
commitd68938a9a7fbfb079b0a6de469de766b5892d769 (patch)
tree443b21cc277126fa44486bc940f8aa521f92564d /module/plugins/container/CCF.py
parentUse wait to set time in SimpleHoster plugins (diff)
downloadpyload-d68938a9a7fbfb079b0a6de469de766b5892d769.tar.xz
Remove bad whitespaces
Merges vuolter/pyload@e4b2562
Diffstat (limited to 'module/plugins/container/CCF.py')
-rw-r--r--module/plugins/container/CCF.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/container/CCF.py b/module/plugins/container/CCF.py
index eb5bacab3..781e2be45 100644
--- a/module/plugins/container/CCF.py
+++ b/module/plugins/container/CCF.py
@@ -19,7 +19,7 @@ class CCF(Container):
__author_mail__ = "Willnix@pyload.org"
def decrypt(self, pyfile):
-
+
infile = pyfile.url.replace("\n", "")
opener = build_opener(MultipartPostHandler)
@@ -32,7 +32,7 @@ class CCF(Container):
location = download_folder #join(download_folder, self.pyfile.package().folder.decode(sys.getfilesystemencoding()))
if not exists(location):
makedirs(location)
-
+
tempdlc_name = join(location, "tmp_%s.dlc" % pyfile.name)
tempdlc = open(tempdlc_name, "w")
tempdlc.write(re.search(r'<dlc>(.*)</dlc>', tempdlc_content, re.DOTALL).group(1))