From b23296be3cbb97220e788cd5a46c662b77bb22fc Mon Sep 17 00:00:00 2001 From: Laurent Peuch Date: Tue, 25 Jun 2019 05:37:12 +0200 Subject: [PATCH] [fix] remove useless line that could generate bugs --- src/yunohost/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/yunohost/app.py b/src/yunohost/app.py index 8e047169c..11d9b735b 100644 --- a/src/yunohost/app.py +++ b/src/yunohost/app.py @@ -1658,7 +1658,7 @@ def app_config_show_panel(app): option["default"] = args_dict[option["name"]] else: logger.debug("Variable '%s' is not declared by config script, using default", generated_name) - option["default"] = option["default"] + # do nothing, we'll use the default if present return { "app_id": app_id,