Index: channels/configwin.py ================================================================== --- channels/configwin.py +++ channels/configwin.py @@ -153,11 +153,11 @@ cb = gtk.CheckButton(opt["description"]) description = None # drop down list elif opt["type"] in ("select", "choose", "options"): - cb = ComboBoxText(ComboBoxText.parse_options(opt["select"])) # custom uikit widget + cb = ComboBoxText(ComboBoxText.parse_options(opt.get("select"))) # custom uikit widget # numeric elif opt["type"] in ("int", "integer", "numeric"): adj = gtk.Adjustment(0, 0, 5000, 1, 10, 0) if ver == 2: