diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-04-11 12:26:05 +0200 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2014-04-11 12:26:05 +0200 |
commit | 4d978dedd16418a4e7d8c81bd819a6a5fa432057 (patch) | |
tree | a347dae567c7e254b41df58e029f7bccfd5603a8 /module/plugins/container | |
parent | Fix __pattern__ www (diff) | |
download | pyload-4d978dedd16418a4e7d8c81bd819a6a5fa432057.tar.xz |
Use pyfile instead self.pyfile
Merges vuolter/pyload@b7f6e2e
Diffstat (limited to 'module/plugins/container')
-rw-r--r-- | module/plugins/container/CCF.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/container/CCF.py b/module/plugins/container/CCF.py index 15f130856..fbc4f2a25 100644 --- a/module/plugins/container/CCF.py +++ b/module/plugins/container/CCF.py @@ -28,7 +28,7 @@ class CCF(Container): tempdlc_content = opener.open('http://service.jdownloader.net/dlcrypt/getDLC.php', params).read() download_folder = self.config['general']['download_folder'] - location = download_folder #join(download_folder, self.pyfile.package().folder.decode(sys.getfilesystemencoding())) + location = download_folder #join(download_folder, pyfile.package().folder.decode(sys.getfilesystemencoding())) if not exists(location): makedirs(location) |