summaryrefslogtreecommitdiffstats
path: root/module/plugins/internal/Crypter.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-06-15 00:17:49 +0200
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-06-15 00:17:49 +0200
commit71d5584e82050a66aa5306ce99e43e7cbc3a62a7 (patch)
tree5af9cefdee9d4b4b97caee9ba3c10a8bc8b73d3f /module/plugins/internal/Crypter.py
parentUpdate Container (diff)
downloadpyload-71d5584e82050a66aa5306ce99e43e7cbc3a62a7.tar.xz
Fix new internal plugins
Diffstat (limited to 'module/plugins/internal/Crypter.py')
-rw-r--r--module/plugins/internal/Crypter.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/module/plugins/internal/Crypter.py b/module/plugins/internal/Crypter.py
index 3db36ca8e..5fb9bc5c2 100644
--- a/module/plugins/internal/Crypter.py
+++ b/module/plugins/internal/Crypter.py
@@ -7,11 +7,6 @@ from module.utils import decode, save_path
class Crypter(Plugin):
- """
- Base plugin for crypter.
- Overwrite `decrypt` in your subclassed plugin.
- """
-
__name__ = "Crypter"
__type__ = "crypter"
__version__ = "0.03"
@@ -29,7 +24,7 @@ class Crypter(Plugin):
def __init__(self, pyfile):
- super(Crypter, self).__init__(self, pyfile)
+ super(Crypter, self).__init__(pyfile)
#: Provide information in dict here
self.info = {} #@TODO: Move to Plugin