mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
[fix] Allow empty app arguments in app_install
This commit is contained in:
parent
8cd95410be
commit
a336f33276
1 changed files with 1 additions and 1 deletions
|
@ -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 = {}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue