summaryrefslogtreecommitdiffstats
path: root/pyload/plugins/crypter/EmbeduploadCom.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2014-04-11 12:26:05 +0200
committerGravatar Stefano <l.stickell@yahoo.it> 2014-04-21 17:22:19 +0200
commit41559c6d7c17862cc5640631e8a1bb7a00f923da (patch)
treed268d8d659b3099f561f03a18e5efe4fbf29ef8a /pyload/plugins/crypter/EmbeduploadCom.py
parentFix __pattern__ www (diff)
downloadpyload-41559c6d7c17862cc5640631e8a1bb7a00f923da.tar.xz
Use pyfile instead self.pyfile
Merges vuolter/pyload@b7f6e2e (cherry picked from commit 4d978dedd16418a4e7d8c81bd819a6a5fa432057)
Diffstat (limited to 'pyload/plugins/crypter/EmbeduploadCom.py')
-rw-r--r--pyload/plugins/crypter/EmbeduploadCom.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyload/plugins/crypter/EmbeduploadCom.py b/pyload/plugins/crypter/EmbeduploadCom.py
index dd0fcb533..2beabcefd 100644
--- a/pyload/plugins/crypter/EmbeduploadCom.py
+++ b/pyload/plugins/crypter/EmbeduploadCom.py
@@ -19,7 +19,7 @@ class EmbeduploadCom(Crypter):
LINK_PATTERN = r'<div id="([^"]+)"[^>]*>\s*<a href="([^"]+)" target="_blank" (?:class="DownloadNow"|style="color:red")>'
def decrypt(self, pyfile):
- self.html = self.load(self.pyfile.url, decode=True)
+ self.html = self.load(pyfile.url, decode=True)
tmp_links = []
new_links = []
@@ -39,7 +39,7 @@ class EmbeduploadCom(Crypter):
self.getLocation(tmp_links, new_links)
if new_links:
- self.core.files.addLinks(new_links, self.pyfile.package().id)
+ self.core.files.addLinks(new_links, pyfile.package().id)
else:
self.fail('Could not extract any links')