From f352979b4cb9ab088c01952dfe7721062834ae5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Lebleu?= Date: Mon, 13 Jul 2015 22:46:38 +0200 Subject: [PATCH] [fix] Allow empty app arguments in app_install --- lib/yunohost/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/yunohost/app.py b/lib/yunohost/app.py index 73498ca9e..5972b2d37 100644 --- a/lib/yunohost/app.py +++ b/lib/yunohost/app.py @@ -469,7 +469,7 @@ def app_install(auth, app, label=None, args=None): try: if args is None: args = '' - args_dict = dict(urlparse.parse_qsl(args)) + args_dict = dict(urlparse.parse_qsl(args, keep_blank_values=True)) except: args_dict = {}