From 27dfd6af6e4e504793093c9db6d09025e36303c6 Mon Sep 17 00:00:00 2001 From: Laurent Peuch Date: Sun, 10 Jun 2018 20:35:27 +0200 Subject: [PATCH] [fix] missing YNH_APP_ID on scripts/config apply --- 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 ca98d7a14..7cbc8922b 100644 --- a/src/yunohost/app.py +++ b/src/yunohost/app.py @@ -1457,7 +1457,7 @@ def app_config_apply(app_id, args): config_panel = read_json(config_panel) - env = {} + env = {"YNH_APP_ID": app_id} args = dict(urlparse.parse_qsl(args, keep_blank_values=True)) for tab in config_panel.get("panel", []):