diff options
author | Jeix <devnull@localhost> | 2010-08-08 13:17:16 +0200 |
---|---|---|
committer | Jeix <devnull@localhost> | 2010-08-08 13:17:16 +0200 |
commit | 66017ac9de79ee21aed780882177eeb22128cc87 (patch) | |
tree | 34c630782214a91b4efdc7af2b47adc474f0de8c /module/plugins/container | |
parent | Handling special cases in log (empty, non existing..) (diff) | |
download | pyload-66017ac9de79ee21aed780882177eeb22128cc87.tar.xz |
ccf fix and myvideo.de
Diffstat (limited to 'module/plugins/container')
-rw-r--r-- | module/plugins/container/CCF.py | 4 |
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() |