diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-08-04 14:40:38 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-08-04 14:40:38 +0200 |
commit | c923c14901a2e9215c42f072607a1cc3ffe675ab (patch) | |
tree | 3dc3ae59a2f5a9dc479af7621ead7cda2f9e3fb5 /module/web/pyload | |
parent | more fixing (diff) | |
download | pyload-c923c14901a2e9215c42f072607a1cc3ffe675ab.tar.xz |
some fixes
Diffstat (limited to 'module/web/pyload')
-rw-r--r-- | module/web/pyload/views.py | 4 |
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])) |