add missing commas

This commit is contained in:
psy 2021-12-21 09:39:42 +01:00
parent 84ffb7479b
commit 68e0865931
No known key found for this signature in database
GPG key ID: DFF5B17AC3A8ECF5

View file

@ -90,7 +90,7 @@ def run_module():
cwd=module.params['nextcloud_path'])
# set update interval, seems necessary to activate sync.
module.run_command(['/usr/bin/php', 'occ', 'config:app:set', 'user_ldap' 'updateAttributesInterval' '--value=86400'], check_rc=True,
module.run_command(['/usr/bin/php', 'occ', 'config:app:set', 'user_ldap', 'updateAttributesInterval', '--value=86400'], check_rc=True,
cwd=module.params['nextcloud_path'])
module.exit_json(**result)