diff options
| author | 2014-11-23 02:10:18 +0100 | |
|---|---|---|
| committer | 2014-11-23 02:10:18 +0100 | |
| commit | 37858ae9675f3363e9e7314707a08d79406d6c6a (patch) | |
| tree | 2c5963c13400a772171f84df65218a51b9cbb578 /module/plugins/crypter/ILoadTo.py | |
| parent | [ZShareNet] Dead hoster (diff) | |
| download | pyload-37858ae9675f3363e9e7314707a08d79406d6c6a.tar.xz | |
Fix missing create_getInfo in dead crypters
Diffstat (limited to 'module/plugins/crypter/ILoadTo.py')
| -rw-r--r-- | module/plugins/crypter/ILoadTo.py | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/module/plugins/crypter/ILoadTo.py b/module/plugins/crypter/ILoadTo.py index 3dc806b06..f3415706d 100644 --- a/module/plugins/crypter/ILoadTo.py +++ b/module/plugins/crypter/ILoadTo.py @@ -1,6 +1,6 @@  # -*- coding: utf-8 -*- -from module.plugins.internal.DeadCrypter import DeadCrypter +from module.plugins.internal.DeadCrypter import DeadCrypter, create_getInfo  class ILoadTo(DeadCrypter): @@ -14,3 +14,6 @@ class ILoadTo(DeadCrypter):      __description__ = """Iload.to decrypter plugin"""      __license__     = "GPLv3"      __authors__     = [("hzpz", None)] + + +getInfo = create_getInfo(ILoadTo) | 
