From d7bc60bcbce3358c9a5c6bc5cf5cb8ecd93f0334 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Lebleu?= Date: Sat, 17 May 2014 00:33:52 +0200 Subject: [PATCH] [fix] Forgotten auth in app_remove --- app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app.py b/app.py index 90f3a3ff8..2974a9544 100644 --- a/app.py +++ b/app.py @@ -488,7 +488,7 @@ def app_install(auth, app, label=None, args=None): raise MoulinetteError(errno.EINTR, m18n.g('operation_interrupted')) -def app_remove(app): +def app_remove(auth, app): """ Remove app @@ -518,7 +518,7 @@ def app_remove(app): if os.path.exists(app_setting_path): shutil.rmtree(app_setting_path) shutil.rmtree('/tmp/yunohost_remove') hook_remove(app) - app_ssowatconf() + app_ssowatconf(auth) msignals.display(m18n.n('app_removed') % app, 'success')