diff options
author | Frederik Möllers <frederikmoellers@posteo.de> | 2015-06-23 00:39:30 +0200 |
---|---|---|
committer | Frederik Möllers <frederikmoellers@posteo.de> | 2015-06-23 00:39:30 +0200 |
commit | a6a4855f8dbca9a93607ed398e943c80bb678ca2 (patch) | |
tree | 34c91a905fb27a949564f9735aa3d27ff0c2d29a /module/plugins/crypter | |
parent | Update ShSt crypter plugin (diff) | |
download | pyload-a6a4855f8dbca9a93607ed398e943c80bb678ca2.tar.xz |
Update ShSt crypter plugin
Revert to using the "regular" Crypter abstract class instead of
SimpleCrypter. Before the last commit, Crypter was used and the last
commit didn't actually make use of any SimpleCrypter functionality. So
in order to be consistent, Crypter is now used again.
Diffstat (limited to 'module/plugins/crypter')
-rw-r--r-- | module/plugins/crypter/ShSt.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/module/plugins/crypter/ShSt.py b/module/plugins/crypter/ShSt.py index f8733ac2b..4dc5b1e2d 100644 --- a/module/plugins/crypter/ShSt.py +++ b/module/plugins/crypter/ShSt.py @@ -1,15 +1,15 @@ # -*- coding: utf-8 -*- -from module.plugins.internal.SimpleCrypter import SimpleCrypter +from module.plugins.internal.Crypter import Crypter import pycurl import re -class ShSt(SimpleCrypter): +class ShSt(Crypter): __name__ = "ShSt" __type__ = "crypter" - __version__ = "0.02" + __version__ = "0.03" __pattern__ = r'http://sh\.st/\w+' |