diff options
Diffstat (limited to 'pyload/plugin/addon')
| -rw-r--r-- | pyload/plugin/addon/UpdateManager.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/pyload/plugin/addon/UpdateManager.py b/pyload/plugin/addon/UpdateManager.py index cf8349e79..84d282bde 100644 --- a/pyload/plugin/addon/UpdateManager.py +++ b/pyload/plugin/addon/UpdateManager.py @@ -120,7 +120,7 @@ class UpdateManager(Addon):                      reloads.append(id)                      self.mtimes[id] = mtime -        return True if self.core.pluginManager.reloadPlugins(reloads) else False +        return bool(self.core.pluginManager.reloadPlugins(reloads))      def server_response(self): | 
