From 712ec761237eb989484b8c8f84fdf2d566500482 Mon Sep 17 00:00:00 2001 From: Walter Purcaro Date: Wed, 28 Oct 2015 00:58:56 +0100 Subject: Fix https://github.com/pyload/pyload/issues/2112 --- module/plugins/crypter/LinkCryptWs.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'module/plugins/crypter/LinkCryptWs.py') diff --git a/module/plugins/crypter/LinkCryptWs.py b/module/plugins/crypter/LinkCryptWs.py index 46e27dfef..d849f08c2 100644 --- a/module/plugins/crypter/LinkCryptWs.py +++ b/module/plugins/crypter/LinkCryptWs.py @@ -32,7 +32,7 @@ class LinkCryptWs(Crypter): def setup(self): - self.links = [] + self.urls = [] self.sources = ['cnl', 'web', 'dlc', 'rsdf', 'ccf'] @@ -83,11 +83,11 @@ class LinkCryptWs(Crypter): links = self.handle_link_source(type) if links: - self.links.extend(links) + self.urls.extend(links) break - if self.links: - self.packages = [(package_name, self.links, folder_name)] + if self.urls: + self.packages = [(package_name, self.urls, folder_name)] def is_online(self): -- cgit v1.2.3