summaryrefslogtreecommitdiffstats
path: root/module/web/pyload/views.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/web/pyload/views.py')
-rw-r--r--module/web/pyload/views.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/web/pyload/views.py b/module/web/pyload/views.py
index f6175f338..d75b7a485 100644
--- a/module/web/pyload/views.py
+++ b/module/web/pyload/views.py
@@ -215,7 +215,7 @@ def config(request):
for key, option in section.iteritems():
if key == "desc": continue
- if ";" in option["typ"]:
- option["list"] = option["typ"].split(";")
+ if ";" in option["type"]:
+ option["list"] = option["type"].split(";")
return render_to_response(join(settings.TEMPLATE, 'settings.html'), RequestContext(request, {'conf': conf, 'messages': []}, [status_proc]))