From e4863830c90e23c89c044b5f503219c5444f7a63 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Tue, 1 Feb 2022 15:32:34 +0100 Subject: [PATCH] Fix call to ask_questions_and_parse_answers --- src/utils/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/config.py b/src/utils/config.py index eb5f9b683..aa6586baa 100644 --- a/src/utils/config.py +++ b/src/utils/config.py @@ -580,7 +580,7 @@ class ConfigPanel: prefilled_answers.update(self.new_values) questions = ask_questions_and_parse_answers( - section["options"], + {question["name"]: question for question in section["options"]}, prefilled_answers=prefilled_answers, current_values=self.values, hooks=self.hooks,