From d10e318dd19b9c4a833caf4de82a51b2dae5fe4b Mon Sep 17 00:00:00 2001 From: Julien Malik Date: Mon, 14 Mar 2016 09:27:05 +0100 Subject: [PATCH] [enh] Use kwargs consistently --- 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 c5ea1bdec..982e5cd46 100644 --- a/src/yunohost/app.py +++ b/src/yunohost/app.py @@ -462,7 +462,7 @@ def app_install(auth, app, label=None, args=None): # Retrieve arguments list for install script args_dict = {} if not args else \ dict(urlparse.parse_qsl(args, keep_blank_values=True)) - args_list = _parse_args_from_manifest(manifest, 'install', args_dict, auth) + args_list = _parse_args_from_manifest(manifest, 'install', args=args_dict, auth=auth) args_list.append(app_id) # Create app directory