summaryrefslogtreecommitdiffstats
path: root/pyload/plugins/crypter/DontKnowMe.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyload/plugins/crypter/DontKnowMe.py')
-rw-r--r--pyload/plugins/crypter/DontKnowMe.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyload/plugins/crypter/DontKnowMe.py b/pyload/plugins/crypter/DontKnowMe.py
index 1a7cf57bb..0df14f9ba 100644
--- a/pyload/plugins/crypter/DontKnowMe.py
+++ b/pyload/plugins/crypter/DontKnowMe.py
@@ -18,5 +18,5 @@ class DontKnowMe(Crypter):
LINK_PATTERN = r"http://dontknow.me/at/\?(.+)$"
def decrypt(self, pyfile):
- link = re.findall(self.LINK_PATTERN, self.pyfile.url)[0]
- self.core.files.addLinks([urllib.unquote(link)], self.pyfile.package().id)
+ link = re.findall(self.LINK_PATTERN, pyfile.url)[0]
+ self.core.files.addLinks([urllib.unquote(link)], pyfile.package().id)