From c923c14901a2e9215c42f072607a1cc3ffe675ab Mon Sep 17 00:00:00 2001 From: RaNaN Date: Wed, 4 Aug 2010 14:40:38 +0200 Subject: some fixes --- module/web/pyload/views.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'module/web/pyload') 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])) -- cgit v1.2.3