From e771c9bb3cebede886fd37121df909e723d6c1e3 Mon Sep 17 00:00:00 2001 From: fragonib Date: Sun, 15 May 2011 14:39:19 +0200 Subject: Several Crypters and Hosters fixes, improvements, python2.5 issues... --- module/plugins/crypter/NCryptIn.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'module/plugins/crypter/NCryptIn.py') diff --git a/module/plugins/crypter/NCryptIn.py b/module/plugins/crypter/NCryptIn.py index d2438b285..785c98ba8 100644 --- a/module/plugins/crypter/NCryptIn.py +++ b/module/plugins/crypter/NCryptIn.py @@ -11,7 +11,7 @@ class NCryptIn(Crypter): __name__ = "NCryptIn" __type__ = "crypter" __pattern__ = r"http://(?:www\.)?ncrypt.in/folder-([^/\?]+)" - __version__ = "1.2" + __version__ = "1.21" __description__ = """NCrypt.in Crypter Plugin""" __author_name__ = ("fragonib") __author_mail__ = ("fragonib[AT]yahoo[DOT]es") @@ -49,7 +49,7 @@ class NCryptIn(Crypter): # Extract package links package_links = [] package_links.extend(self.handleWebLinks()) - package_links.extend(self.handleContainer()) + package_links.extend(self.handleContainers()) package_links.extend(self.handleCNL2()) package_links = set(package_links) @@ -152,12 +152,12 @@ class NCryptIn(Crypter): try: url = link.replace("link-", "frame-") link = self.load(url, just_header=True)['location'] - except Exception, e: - self.log.debug("%s: Error decrypting Web link %s, %s" % (self.__name__, link, e)) - package_links.append(link) + package_links.append(link) + except Exception, detail: + self.log.debug("%s: Error decrypting Web link %s, %s" % (self.__name__, link, detail)) return package_links - def handleContainer(self): + def handleContainers(self): package_links = [] self.log.debug("%s: Handling Container links" % self.__name__) -- cgit v1.2.3