summaryrefslogtreecommitdiffstats
path: root/module/plugins/crypter/ShSt.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/crypter/ShSt.py')
-rw-r--r--module/plugins/crypter/ShSt.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/module/plugins/crypter/ShSt.py b/module/plugins/crypter/ShSt.py
index be2fea9e1..fdb40bd76 100644
--- a/module/plugins/crypter/ShSt.py
+++ b/module/plugins/crypter/ShSt.py
@@ -4,13 +4,13 @@ import re
import pycurl
-from module.plugins.internal.Crypter import Crypter, create_getInfo
+from module.plugins.internal.Crypter import Crypter
class ShSt(Crypter):
__name__ = "ShSt"
__type__ = "crypter"
- __version__ = "0.07"
+ __version__ = "0.08"
__status__ = "testing"
__pattern__ = r'http://sh\.st/\w+'
@@ -31,6 +31,3 @@ class ShSt(Crypter):
header = self.load(self.pyfile.url, just_header = True, decode = False)
target_url = header.get('location')
self.links.append(target_url)
-
-
-getInfo = create_getInfo(ShSt)