diff options
author | Gregy <gregy@gregy.cz> | 2010-08-08 23:05:47 +0200 |
---|---|---|
committer | Gregy <gregy@gregy.cz> | 2010-08-08 23:05:47 +0200 |
commit | a574e7e732af4efa66f5ad69354065f28a218392 (patch) | |
tree | d44b577dec85415305a7853161ab533d51211f6d /module/plugins/container | |
parent | NetloadIn partial rewrite (issues fix, implemented info prefetch) (diff) | |
parent | MU link checker (diff) | |
download | pyload-a574e7e732af4efa66f5ad69354065f28a218392.tar.xz |
merge
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() |