diff options
Diffstat (limited to 'pyload/plugins/crypter/OronCom.py')
-rw-r--r-- | pyload/plugins/crypter/OronCom.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/pyload/plugins/crypter/OronCom.py b/pyload/plugins/crypter/OronCom.py index c92666a5b..f466492b3 100644 --- a/pyload/plugins/crypter/OronCom.py +++ b/pyload/plugins/crypter/OronCom.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 OronCom(DeadCrypter): @@ -14,3 +14,6 @@ class OronCom(DeadCrypter): __description__ = """Oron.com folder decrypter plugin""" __license__ = "GPLv3" __authors__ = [("DHMH", "webmaster@pcProfil.de")] + + +getInfo = create_getInfo(OronCom) |