diff options
Diffstat (limited to 'module/plugins/crypter/GooGl.py')
-rw-r--r-- | module/plugins/crypter/GooGl.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/module/plugins/crypter/GooGl.py b/module/plugins/crypter/GooGl.py index 1a44d461f..48abfd8f4 100644 --- a/module/plugins/crypter/GooGl.py +++ b/module/plugins/crypter/GooGl.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -from module.plugins.internal.SimpleCrypter import SimpleCrypter, create_getInfo +from module.plugins.internal.SimpleCrypter import SimpleCrypter from module.plugins.internal.misc import json @@ -33,6 +33,3 @@ class GooGl(SimpleCrypter): self.log_debug("JSON data: " + rep) rep = json.loads(rep) return [rep['longUrl']] if "longUrl" in rep else None - - -getInfo = create_getInfo(GooGl) |