diff options
author | 2014-04-11 12:26:05 +0200 | |
---|---|---|
committer | 2014-04-21 17:22:19 +0200 | |
commit | 41559c6d7c17862cc5640631e8a1bb7a00f923da (patch) | |
tree | d268d8d659b3099f561f03a18e5efe4fbf29ef8a /pyload/plugins/crypter/CCF.py | |
parent | Fix __pattern__ www (diff) | |
download | pyload-41559c6d7c17862cc5640631e8a1bb7a00f923da.tar.xz |
Use pyfile instead self.pyfile
Merges vuolter/pyload@b7f6e2e
(cherry picked from commit 4d978dedd16418a4e7d8c81bd819a6a5fa432057)
Diffstat (limited to 'pyload/plugins/crypter/CCF.py')
-rw-r--r-- | pyload/plugins/crypter/CCF.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyload/plugins/crypter/CCF.py b/pyload/plugins/crypter/CCF.py index 8448c80ed..093a30a84 100644 --- a/pyload/plugins/crypter/CCF.py +++ b/pyload/plugins/crypter/CCF.py @@ -28,7 +28,7 @@ class CCF(Crypter): 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) |