summaryrefslogtreecommitdiffstats
path: root/module/plugins/crypter/ShSt.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-10-18 18:55:20 +0200
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-10-18 18:55:20 +0200
commit54025794ebf707ba0c0f2840d5364b0b380d17a9 (patch)
tree5844b0cb987d4f62b8faf2e8984268793a2ed653 /module/plugins/crypter/ShSt.py
parentUpdate containers (diff)
downloadpyload-54025794ebf707ba0c0f2840d5364b0b380d17a9.tar.xz
Update crypters
Diffstat (limited to 'module/plugins/crypter/ShSt.py')
-rw-r--r--module/plugins/crypter/ShSt.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/module/plugins/crypter/ShSt.py b/module/plugins/crypter/ShSt.py
index 99c2f0db1..232729e25 100644
--- a/module/plugins/crypter/ShSt.py
+++ b/module/plugins/crypter/ShSt.py
@@ -1,9 +1,10 @@
# -*- coding: utf-8 -*-
-from module.plugins.internal.Crypter import Crypter
+import re
import pycurl
-import re
+
+from module.plugins.internal.Crypter import Crypter, create_getInfo
class ShSt(Crypter):
@@ -30,3 +31,6 @@ class ShSt(Crypter):
header = self.load(self.pyfile.url, just_header = True, decode = False)
target_url = header.get('location')
self.urls.append(target_url)
+
+
+getInfo = create_getInfo(ShSt)