From b840120de04e50dad0ae296ee3197e1bd6ad1833 Mon Sep 17 00:00:00 2001 From: sheidan Date: Sat, 19 Jul 2025 04:05:19 -0400 Subject: [PATCH] Fix typo --- plugins/modules/dconf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/modules/dconf.py b/plugins/modules/dconf.py index 627f6c5b7b..a20298ed18 100644 --- a/plugins/modules/dconf.py +++ b/plugins/modules/dconf.py @@ -440,7 +440,7 @@ class DconfPreference(object): except Exception as e: self.module.fail_json(msg='dconf failed while reading config with error: %s' % e) - # For each sub-directory, check if at least on change is needed + # For each sub-directory, check if at least one change is needed changed = any( not self.variants_are_equal(self.read("%s%s/%s" % (root_dir, sub_dir, k)), v) for sub_dir in config.sections()