diff options
author | 2013-07-19 19:36:05 +0200 | |
---|---|---|
committer | 2013-07-19 19:36:17 +0200 | |
commit | 873f91be7d3316e93672731e2f3d2da02b41fca6 (patch) | |
tree | 5a12d1a5ac1f0a4aa5fca9ab9e6b86e64f25e388 /pyload/plugins/Crypter.py | |
parent | Explain how to add tips for translators (diff) | |
download | pyload-873f91be7d3316e93672731e2f3d2da02b41fca6.tar.xz |
new plugin type and refactored request classes
Diffstat (limited to 'pyload/plugins/Crypter.py')
-rw-r--r-- | pyload/plugins/Crypter.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyload/plugins/Crypter.py b/pyload/plugins/Crypter.py index b881510ea..1401d68b8 100644 --- a/pyload/plugins/Crypter.py +++ b/pyload/plugins/Crypter.py @@ -102,7 +102,7 @@ class Crypter(Base): def __init__(self, core, package=None, password=None): Base.__init__(self, core) - self.req = core.requestFactory.getRequest(self.__name__) + self.req = core.requestFactory.getRequest() # Package the plugin was initialized for, don't use this, its not guaranteed to be set self.package = package |