mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
[fix] retreive the actual value
This commit is contained in:
parent
8c7c5d564b
commit
5c02dec59c
1 changed files with 1 additions and 1 deletions
|
@ -1586,7 +1586,7 @@ def app_config_show_panel(app):
|
||||||
[{option["name"]: parsed_values[generated_name]}],
|
[{option["name"]: parsed_values[generated_name]}],
|
||||||
[option]
|
[option]
|
||||||
)
|
)
|
||||||
option["default"] = args_dict[option["name"]]
|
option["default"] = args_dict[option["name"]][0]
|
||||||
else:
|
else:
|
||||||
logger.debug("Variable '%s' is not declared by config script, using default", generated_name)
|
logger.debug("Variable '%s' is not declared by config script, using default", generated_name)
|
||||||
# do nothing, we'll use the default if present
|
# do nothing, we'll use the default if present
|
||||||
|
|
Loading…
Add table
Reference in a new issue