diff options
author | fragonib <devnull@localhost> | 2011-05-15 14:39:19 +0200 |
---|---|---|
committer | fragonib <devnull@localhost> | 2011-05-15 14:39:19 +0200 |
commit | e771c9bb3cebede886fd37121df909e723d6c1e3 (patch) | |
tree | 98beb0e2ed72361596271cac869e40a062a38d4a /module/plugins/crypter/NCryptIn.py | |
parent | fix premium and convert to json (diff) | |
download | pyload-e771c9bb3cebede886fd37121df909e723d6c1e3.tar.xz |
Several Crypters and Hosters fixes, improvements, python2.5 issues...
Diffstat (limited to 'module/plugins/crypter/NCryptIn.py')
-rw-r--r-- | module/plugins/crypter/NCryptIn.py | 12 |
1 files changed, 6 insertions, 6 deletions
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__)
|