diff options
author | Christopher <4Christopher@gmx.de> | 2013-02-22 18:05:23 +0100 |
---|---|---|
committer | Christopher <4Christopher@gmx.de> | 2013-02-22 18:05:23 +0100 |
commit | 0ccfa542e5c293ef925a8031935a3e701f48e7e1 (patch) | |
tree | 1f17522476f3443137133e8d24257eea9d82db53 | |
parent | Fixed crypter HoerbuchIn to match all URLs. (diff) | |
download | pyload-0ccfa542e5c293ef925a8031935a3e701f48e7e1.tar.xz |
incremented version number
-rw-r--r-- | module/plugins/crypter/HoerbuchIn.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/module/plugins/crypter/HoerbuchIn.py b/module/plugins/crypter/HoerbuchIn.py index 860f80152..6f23b2eb9 100644 --- a/module/plugins/crypter/HoerbuchIn.py +++ b/module/plugins/crypter/HoerbuchIn.py @@ -10,7 +10,7 @@ class HoerbuchIn(Crypter): __name__ = "HoerbuchIn" __type__ = "container" __pattern__ = r"http://(www\.)?hoerbuch\.in/(wp/horbucher/\d+/.+/|tp/out.php\?.+|protection/folder_\d+\.html)" - __version__ = "0.6" + __version__ = "0.7" __description__ = """Hoerbuch.in Container Plugin""" __author_name__ = ("spoob", "mkaay") __author_mail__ = ("spoob@pyload.org", "mkaay@mkaay.de") @@ -50,7 +50,6 @@ class HoerbuchIn(Crypter): for hoster_url in pattern.findall(src): self.req.lastURL = url self.load(hoster_url) - self.logInfo("2 %s, %s" % (hoster_url, self.req.lastEffectiveURL)) links.append(self.req.lastEffectiveURL) return links |