diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-08-18 20:47:50 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-08-18 20:47:50 +0200 |
commit | 876e2de602f22ace3a2fa9a2d56f48e3e807cd6a (patch) | |
tree | 1593de5edfdce1ef5e1c8a9162efcc89b3c48cbe /pyload/plugins | |
parent | fixed online status fetching (diff) | |
download | pyload-876e2de602f22ace3a2fa9a2d56f48e3e807cd6a.tar.xz |
small fixes for crypter
Diffstat (limited to 'pyload/plugins')
-rw-r--r-- | pyload/plugins/Crypter.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pyload/plugins/Crypter.py b/pyload/plugins/Crypter.py index d780ad805..2f5584074 100644 --- a/pyload/plugins/Crypter.py +++ b/pyload/plugins/Crypter.py @@ -86,6 +86,10 @@ class Crypter(Base): #: Optional name of an account plugin that should be used, but does not guarantee that one is available USE_ACCOUNT = None + #: When True this crypter will not be decrypted directly and queued one by one. + # Needed for crypter that can't run in parallel or need to wait between decryption. + QUEUE_DECRYPT = False + @classmethod def decrypt(cls, core, url_or_urls): """Static method to decrypt urls or content. Can be used by other plugins. |