diff options
author | Walter Purcaro <vuolter@gmail.com> | 2015-02-28 22:34:54 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2015-02-28 22:34:54 +0100 |
commit | e9f69e9df0fd1cd484670af180d64caea53eaa5c (patch) | |
tree | b9e39821e948cb8dbe0adf79f9109f010314aef3 /pyload/plugin/container/CCF.py | |
parent | Merge branch 'stable' into 0.4.10 (diff) | |
download | pyload-e9f69e9df0fd1cd484670af180d64caea53eaa5c.tar.xz |
safe_join -> fs_join
Diffstat (limited to 'pyload/plugin/container/CCF.py')
-rw-r--r-- | pyload/plugin/container/CCF.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pyload/plugin/container/CCF.py b/pyload/plugin/container/CCF.py index c2771a57b..447f0bc3c 100644 --- a/pyload/plugin/container/CCF.py +++ b/pyload/plugin/container/CCF.py @@ -9,7 +9,7 @@ from urllib2 import build_opener from MultipartPostHandler import MultipartPostHandler from pyload.plugin.Container import Container -from pyload.utils import fs_encode, safe_join +from pyload.utils import fs_encode, fs_join class CCF(Container): @@ -35,7 +35,7 @@ class CCF(Container): 'upload' : open(file, "rb")}).read() download_folder = self.config['general']['download_folder'] - dlc_file = safe_join(download_folder, "tmp_%s.dlc" % pyfile.name) + dlc_file = fs_join(download_folder, "tmp_%s.dlc" % pyfile.name) try: dlc = re.search(r'<dlc>(.+)</dlc>', dlc_content, re.S).group(1).decode('base64') |