summaryrefslogtreecommitdiffstats
path: root/module/web
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2012-01-08 14:44:59 +0100
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2012-01-08 14:44:59 +0100
commitbac28b7740aae772636d8b90e291d9c17dfd59a7 (patch)
tree08b6bd4f00cf27819f06d24f363d633b852f50a3 /module/web
parentsome cleanups (diff)
downloadpyload-bac28b7740aae772636d8b90e291d9c17dfd59a7.tar.xz
new MultiHoster hook
Diffstat (limited to 'module/web')
-rw-r--r--module/web/pyload_app.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/web/pyload_app.py b/module/web/pyload_app.py
index f73defb45..fffa19b48 100644
--- a/module/web/pyload_app.py
+++ b/module/web/pyload_app.py
@@ -246,10 +246,10 @@ def config():
conf_menu = []
plugin_menu = []
- for section, data in conf.getBaseSections():
+ for section, data in sorted(conf.getBaseSections()):
conf_menu.append((section, data.name))
- for section, data in conf.getPluginSections():
+ for section, data in sorted(conf.getPluginSections()):
plugin_menu.append((section, data.name))
accs = PYLOAD.getAccounts(False)