mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-08-05 05:34:22 -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:
|
try:
|
||||||
config.read_string(raw_config)
|
config.read_string(raw_config)
|
||||||
except Exception as e:
|
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
|
# For each sub-directory, check if at least one change is needed
|
||||||
changed = any(
|
changed = any(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue