diff options
author | 2014-12-12 20:33:34 +0100 | |
---|---|---|
committer | 2014-12-12 20:33:34 +0100 | |
commit | 0f530be2642c63759cb6156866f1d4ab119760da (patch) | |
tree | df25e018cba9b652a6bcbcbe41dc82b89e40a3fa /module/plugins/crypter/NetfolderIn.py | |
parent | [SimpleHoster] Remove CONTENT_DISPOSITION + Rename parseInfo to parseInfos (diff) | |
download | pyload-0f530be2642c63759cb6156866f1d4ab119760da.tar.xz |
Fix missing create_getInfo
Diffstat (limited to 'module/plugins/crypter/NetfolderIn.py')
-rw-r--r-- | module/plugins/crypter/NetfolderIn.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/module/plugins/crypter/NetfolderIn.py b/module/plugins/crypter/NetfolderIn.py index a47bd0503..bfdf5cb82 100644 --- a/module/plugins/crypter/NetfolderIn.py +++ b/module/plugins/crypter/NetfolderIn.py @@ -2,7 +2,7 @@ import re -from module.plugins.internal.SimpleCrypter import SimpleCrypter +from module.plugins.internal.SimpleCrypter import SimpleCrypter, create_getInfo class NetfolderIn(SimpleCrypter): @@ -68,3 +68,6 @@ class NetfolderIn(SimpleCrypter): links = re.search(r'name="list" value="(.*?)"', self.html).group(1).split(",") self.logDebug("Package has %d links" % len(links)) return links + + +getInfo = create_getInfo(NetfolderIn) |