diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-05-26 20:20:21 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-05-26 20:20:21 +0200 |
commit | 5d0807959de238399fb49de6d0b29b5f4e4b37f1 (patch) | |
tree | 178b0f813447e54859f0b3f11432c06458dd0f90 /module/HookManager.py | |
parent | rehost plugin, fixed some account management issues (diff) | |
download | pyload-5d0807959de238399fb49de6d0b29b5f4e4b37f1.tar.xz |
mirror detection/handling
Diffstat (limited to 'module/HookManager.py')
-rw-r--r-- | module/HookManager.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/HookManager.py b/module/HookManager.py index 9688d8c60..29756f8c5 100644 --- a/module/HookManager.py +++ b/module/HookManager.py @@ -109,8 +109,8 @@ class HookManager: if self.core.debug: traceback.print_exc() - self.log.info(_("Activated plugins: %s") % ", ".join(active)) - self.log.info(_("Deactivate plugins: %s") % ", ".join(deactive)) + self.log.info(_("Activated plugins: %s") % ", ".join(sorted(active))) + self.log.info(_("Deactivate plugins: %s") % ", ".join(sorted(deactive))) #self.log.info(_("Not loaded plugins: %s") % ", ".join(unloaded)) self.plugins = plugins |