mirror of
https://github.com/YunoHost/moulinette.git
synced 2024-09-03 20:06:31 +02:00
Correct installation error
This commit is contained in:
parent
67cf68343b
commit
6b7213f511
2 changed files with 2 additions and 2 deletions
|
@ -149,7 +149,7 @@ def app_install(app, domain=None, path=None, label=None, public=False, protected
|
|||
try:
|
||||
domain_list(filter="virtualdomain="+ domain)
|
||||
except YunoHostError:
|
||||
domain_add(domain=[domain])
|
||||
domain_add([domain])
|
||||
|
||||
|
||||
# TODO: Install dependencies
|
||||
|
|
|
@ -30,7 +30,7 @@ def tools_ldapinit(domain):
|
|||
for rdn, attr_dict in ldap_map['childs'].items():
|
||||
yldap.add(rdn, attr_dict)
|
||||
|
||||
domain_add(domain=[domain])
|
||||
domain_add([domain])
|
||||
|
||||
admin_dict = {
|
||||
'cn': 'admin',
|
||||
|
|
Loading…
Reference in a new issue