From: Patrick Talbert <ptalb...@redhat.com>

redhat: use 'update' method in merge.py

Use the update method to update our baseconfigs
dictionary rather than iterating

Signed-off-by: Clark Williams <willi...@redhat.com>

diff --git a/redhat/configs/merge.py b/redhat/configs/merge.py
index blahblah..blahblah 100755
--- a/redhat/configs/merge.py
+++ b/redhat/configs/merge.py
@@ -50,9 +50,8 @@ if not os.path.exists(sys.argv[2]):
     usage("base config file %s does not exist!" % sys.argv[2])
 baseconfigs = read_config_file(sys.argv[2])
 
-# iterate over the overrides, replacing values in the base config
-for v in overrides.keys():
-    baseconfigs[v] = overrides[v]
+# update baseconfigs with the overrides values
+baseconfigs.update(overrides)
 
 # print the new config to stdout
 for v in baseconfigs.keys():

--
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2117
_______________________________________________
kernel mailing list -- kernel@lists.fedoraproject.org
To unsubscribe send an email to kernel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/kernel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue

Reply via email to