From a22672ede84496cfa2f49438e8e3d58663802314 Mon Sep 17 00:00:00 2001 From: ljf Date: Wed, 11 Apr 2018 10:03:20 +0200 Subject: [PATCH] [fix] Avoid operation log filename with space --- 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 2ee96afd1..0e40470c5 100644 --- a/src/yunohost/app.py +++ b/src/yunohost/app.py @@ -786,7 +786,7 @@ def app_install(auth, app, label=None, args=None, no_remove_on_failure=False): os.path.join(extracted_app_folder, 'scripts/remove'), args=[app_instance_name], env=env_dict_remove, user="root", journal = Journal( - ["remove", app_instance_name, "failed install"], + ["remove", app_instance_name, "failed_install"], "app", args=[app_instance_name], env=env_dict_remove, ), )