diff options
Diffstat (limited to 'pyload/plugins/crypter/FiredriveCom.py')
-rw-r--r-- | pyload/plugins/crypter/FiredriveCom.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/pyload/plugins/crypter/FiredriveCom.py b/pyload/plugins/crypter/FiredriveCom.py index 7ef84c8ff..bc88b974c 100644 --- a/pyload/plugins/crypter/FiredriveCom.py +++ b/pyload/plugins/crypter/FiredriveCom.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -from pyload.plugins.internal.DeadCrypter import DeadCrypter +from module.plugins.internal.DeadCrypter import DeadCrypter, create_getInfo class FiredriveCom(DeadCrypter): @@ -14,3 +14,6 @@ class FiredriveCom(DeadCrypter): __description__ = """Firedrive.com folder decrypter plugin""" __license__ = "GPLv3" __authors__ = [("Walter Purcaro", "vuolter@gmail.com")] + + +getInfo = create_getInfo(FiredriveCom) |