[fix] Allow empty app arguments in app_install

This commit is contained in:
Jérôme Lebleu 2015-07-13 22:46:38 +02:00
parent 8cd95410be
commit a336f33276

View file

@ -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 = {}