summaryrefslogtreecommitdiffstats
path: root/pyload/webui/app/pyloadweb.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-04-19 20:54:41 +0200
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-04-19 20:54:41 +0200
commit5645ae5a454b95245813c78ff2da541ec648441f (patch)
treeaef7b4aebf11e9f10872b6fc314b2e45344be7e1 /pyload/webui/app/pyloadweb.py
parentSpare code cosmetics (6) (diff)
parentfix typo (diff)
downloadpyload-5645ae5a454b95245813c78ff2da541ec648441f.tar.xz
Merge pull request #9 from ardi69/0.4.10
sorted config in webui ("Activated" always on top)
Diffstat (limited to 'pyload/webui/app/pyloadweb.py')
-rw-r--r--pyload/webui/app/pyloadweb.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyload/webui/app/pyloadweb.py b/pyload/webui/app/pyloadweb.py
index b3baed3eb..154409655 100644
--- a/pyload/webui/app/pyloadweb.py
+++ b/pyload/webui/app/pyloadweb.py
@@ -471,7 +471,7 @@ def logs(item=-1):
'reversed': reversed, 'perpage': perpage, 'perpage_p': sorted(perpage_p),
'iprev': 1 if item - perpage < 1 else item - perpage,
'inext': (item + perpage) if item + perpage < len(log) else item,
- 'color_template': color_template},
+ 'color_template': color_template.title()},
[pre_processor])