mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
fix: config.py: Question.filter as None by default make more sense
This commit is contained in:
parent
a51738f1c3
commit
c99729d062
1 changed files with 1 additions and 1 deletions
|
@ -706,7 +706,7 @@ class Question:
|
||||||
self.ask = question.get("ask", {"en": self.name})
|
self.ask = question.get("ask", {"en": self.name})
|
||||||
self.help = question.get("help")
|
self.help = question.get("help")
|
||||||
self.redact = question.get("redact", False)
|
self.redact = question.get("redact", False)
|
||||||
self.filter = question.get("filter", "true")
|
self.filter = question.get("filter", None)
|
||||||
# .current_value is the currently stored value
|
# .current_value is the currently stored value
|
||||||
self.current_value = question.get("current_value")
|
self.current_value = question.get("current_value")
|
||||||
# .value is the "proposed" value which we got from the user
|
# .value is the "proposed" value which we got from the user
|
||||||
|
|
Loading…
Add table
Reference in a new issue