summaryrefslogtreecommitdiffstats
path: root/module/plugins/internal/DeadCrypter.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-06-02 03:26:41 +0200
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-06-02 03:26:41 +0200
commitf8ee62fa313beddc7af46dc1c361adb8577d0fa4 (patch)
tree3f37fdd4142da53d8649ba593528e82462df3b3c /module/plugins/internal/DeadCrypter.py
parent[SimpleCrypter] Update (diff)
downloadpyload-f8ee62fa313beddc7af46dc1c361adb8577d0fa4.tar.xz
Fix https://github.com/pyload/pyload/issues/1446
Diffstat (limited to 'module/plugins/internal/DeadCrypter.py')
-rw-r--r--module/plugins/internal/DeadCrypter.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/module/plugins/internal/DeadCrypter.py b/module/plugins/internal/DeadCrypter.py
index c93447164..a12399501 100644
--- a/module/plugins/internal/DeadCrypter.py
+++ b/module/plugins/internal/DeadCrypter.py
@@ -1,10 +1,10 @@
# -*- coding: utf-8 -*-
from module.plugins.internal.SimpleCrypter import create_getInfo
-from module.plugins.Crypter import Crypter as _Crypter
+from module.plugins.Crypter import Crypter
-class DeadCrypter(_Crypter):
+class DeadCrypter(Crypter):
__name__ = "DeadCrypter"
__type__ = "crypter"
__version__ = "0.05"
@@ -17,8 +17,8 @@ class DeadCrypter(_Crypter):
@classmethod
- def apiInfo(cls, url):
- api = super(DeadCrypter, cls).apiInfo(url)
+ def apiInfo(cls, *args, **kwargs):
+ api = super(DeadCrypter, cls).apiInfo(*args, **kwargs)
api['status'] = 1
return api