From 4fda8ed49fbf97c10343c15e794e74683a727785 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Fri, 21 Jul 2023 22:02:56 +0200 Subject: [PATCH] apps: fix another case of no attribute 'value' due to config panels/questions refactoring --- src/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.py b/src/app.py index 75d336241..7f4acdc1a 100644 --- a/src/app.py +++ b/src/app.py @@ -1098,7 +1098,7 @@ def app_install( args = { question.id: question.value for question in questions - if question.value is not None + if not question.readonly and question.value is not None } # Validate domain / path availability for webapps