From a280b1866a9ff540b85fc5dc56c49c69fdea6d4b Mon Sep 17 00:00:00 2001 From: OniriCorpe Date: Wed, 16 Oct 2024 02:13:23 +0200 Subject: [PATCH] adjust an error to hint if the bind key wasn't found --- src/utils/configpanel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/configpanel.py b/src/utils/configpanel.py index 7e72969aba..b2f9688682 100644 --- a/src/utils/configpanel.py +++ b/src/utils/configpanel.py @@ -529,7 +529,7 @@ def _hydrate(self): continue else: raise YunohostError( - f"Config panel question '{option['id']}' should be initialized with a value during install or upgrade.", + f"Config panel question '{option['id']}' should be initialized with a value during install or upgrade. (Or maybe the bind key wasn't found?)", raw_msg=True, ) value = self.values[option["id"]]