From 66017ac9de79ee21aed780882177eeb22128cc87 Mon Sep 17 00:00:00 2001 From: Jeix Date: Sun, 8 Aug 2010 13:17:16 +0200 Subject: ccf fix and myvideo.de --- module/plugins/container/CCF.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'module/plugins/container/CCF.py') 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'(.*)', tempdlc_content, re.DOTALL).group(1)) tempdlc.close() -- cgit v1.2.3