diff options
Diffstat (limited to 'module/plugins/crypter/ShSt.py')
-rw-r--r-- | module/plugins/crypter/ShSt.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/module/plugins/crypter/ShSt.py b/module/plugins/crypter/ShSt.py index 77331e065..99c2f0db1 100644 --- a/module/plugins/crypter/ShSt.py +++ b/module/plugins/crypter/ShSt.py @@ -7,12 +7,13 @@ import re class ShSt(Crypter): - __name = "ShSt" + __name__ = "ShSt" __type__ = "crypter" __version__ = "0.05" __status__ = "testing" __pattern__ = r'http://sh\.st/\w+' + __config__ = [("activated", "bool", "Activated", True)] __description__ = """Sh.St decrypter plugin""" __license__ = "GPLv3" |