diff options
Diffstat (limited to 'module/plugins/crypter/TnyCz.py')
-rw-r--r-- | module/plugins/crypter/TnyCz.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/module/plugins/crypter/TnyCz.py b/module/plugins/crypter/TnyCz.py index c75c247ff..bef7bfd32 100644 --- a/module/plugins/crypter/TnyCz.py +++ b/module/plugins/crypter/TnyCz.py @@ -2,7 +2,7 @@ import re -from module.plugins.internal.SimpleCrypter import SimpleCrypter, create_getInfo +from module.plugins.internal.SimpleCrypter import SimpleCrypter class TnyCz(SimpleCrypter): @@ -29,6 +29,3 @@ class TnyCz(SimpleCrypter): def get_links(self): m = re.search(r'<a id=\'save_paste\' href="(.+save\.php\?hash=.+)">', self.data) return re.findall(".+", self.load(m.group(1))) if m else None - - -getInfo = create_getInfo(TnyCz) |