diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-04-11 12:26:05 +0200 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2014-04-21 17:22:19 +0200 |
commit | 41559c6d7c17862cc5640631e8a1bb7a00f923da (patch) | |
tree | d268d8d659b3099f561f03a18e5efe4fbf29ef8a /pyload/plugins/crypter/SafelinkingNet.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/SafelinkingNet.py')
-rw-r--r-- | pyload/plugins/crypter/SafelinkingNet.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pyload/plugins/crypter/SafelinkingNet.py b/pyload/plugins/crypter/SafelinkingNet.py index 8a11d13a1..4a907c28d 100644 --- a/pyload/plugins/crypter/SafelinkingNet.py +++ b/pyload/plugins/crypter/SafelinkingNet.py @@ -27,7 +27,7 @@ class SafelinkingNet(Crypter): self.load(url) m = re.search("^Location: (.+)$", self.req.http.header, re.MULTILINE) if m: - self.core.files.addLinks([m.group(1)], self.pyfile.package().id) + self.core.files.addLinks([m.group(1)], pyfile.package().id) else: self.fail("Couldn't find forwarded Link") @@ -77,4 +77,4 @@ class SafelinkingNet(Crypter): else: packageLinks.append(link["full"]) - self.core.files.addLinks(packageLinks, self.pyfile.package().id) + self.core.files.addLinks(packageLinks, pyfile.package().id) |