mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-08-02 20:24:23 -07:00
Fix error message when parsing config failed
Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
parent
abba302630
commit
6e1013568b
1 changed files with 1 additions and 1 deletions
|
@ -445,7 +445,7 @@ class DconfPreference(object):
|
|||
try:
|
||||
config.read_string(raw_config)
|
||||
except Exception as e:
|
||||
self.module.fail_json(msg='dconf failed while reading config with error: %s' % e)
|
||||
self.module.fail_json(msg='Failed while parsing config with error: %s' % e)
|
||||
|
||||
# For each sub-directory, check if at least one change is needed
|
||||
changed = any(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue