summaryrefslogtreecommitdiffstats
path: root/module/plugins/container/CCF.py
diff options
context:
space:
mode:
authorGravatar Jeix <devnull@localhost> 2010-08-08 13:17:16 +0200
committerGravatar Jeix <devnull@localhost> 2010-08-08 13:17:16 +0200
commit66017ac9de79ee21aed780882177eeb22128cc87 (patch)
tree34c630782214a91b4efdc7af2b47adc474f0de8c /module/plugins/container/CCF.py
parentHandling special cases in log (empty, non existing..) (diff)
downloadpyload-66017ac9de79ee21aed780882177eeb22128cc87.tar.xz
ccf fix and myvideo.de
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 a18a7c309..8b35589f3 100644
--- a/module/plugins/container/CCF.py
+++ b/module/plugins/container/CCF.py
@@ -8,7 +8,7 @@ from module.plugins.Container import Container
from module.network.MultipartPostHandler import MultipartPostHandler
from os import makedirs
-from os.path import exists
+from os.path import exists, join
class CCF(Container):
__name__ = "CCF"
@@ -33,7 +33,7 @@ class CCF(Container):
if not exists(location):
makedirs(location)
- tempdlc_name = "tmp_%s.dlc" % join(location, pyfile.name)
+ 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))
tempdlc.close()