summaryrefslogtreecommitdiffstats
path: root/module/web/pyload
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2010-08-04 14:40:38 +0200
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2010-08-04 14:40:38 +0200
commitc923c14901a2e9215c42f072607a1cc3ffe675ab (patch)
tree3dc3ae59a2f5a9dc479af7621ead7cda2f9e3fb5 /module/web/pyload
parentmore fixing (diff)
downloadpyload-c923c14901a2e9215c42f072607a1cc3ffe675ab.tar.xz
some fixes
Diffstat (limited to 'module/web/pyload')
-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]))