diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-10-16 14:53:04 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-10-16 14:53:04 +0200 |
commit | 11c3f296ddc62d75853fa1b3082fd5dd3ab01e02 (patch) | |
tree | 43c0df497a138538a806715b3c67986d04db8cdf | |
parent | fixed decrypting files when dl slots are full (diff) | |
download | pyload-11c3f296ddc62d75853fa1b3082fd5dd3ab01e02.tar.xz |
fix
-rw-r--r-- | module/FileDatabase.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/FileDatabase.py b/module/FileDatabase.py index baf580469..1ac83cd21 100644 --- a/module/FileDatabase.py +++ b/module/FileDatabase.py @@ -364,7 +364,7 @@ class FileHandler: return None plugins = self.core.pluginManager.crypterPlugins.keys() + self.core.pluginManager.containerPlugins.keys() - plugins = tuple(plugins) + plugins = str(tuple(plugins)) jobs = self.db.getPluginJob(plugins) if jobs: |