From: Patrick Talbert <ptalbert@xxxxxxxxxx> redhat: method.py: change the output loop to use 'values' method We don't need the key values when printing the output file so just use the values method to fetch them Signed-off-by: Clark Williams <williams@xxxxxxxxxx> diff --git a/redhat/configs/merge.py b/redhat/configs/merge.py index blahblah..blahblah 100644 --- a/redhat/configs/merge.py +++ b/redhat/configs/merge.py @@ -53,5 +53,5 @@ baseconfigs = read_config_file(sys.argv[2]) baseconfigs.update(overrides) # print the new config to stdout -for v in baseconfigs.keys(): - print(baseconfigs[v]) +for v in baseconfigs.values(): + print(v) -- https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2117 _______________________________________________ kernel mailing list -- kernel@xxxxxxxxxxxxxxxxxxxxxxx To unsubscribe send an email to kernel-leave@xxxxxxxxxxxxxxxxxxxxxxx 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@xxxxxxxxxxxxxxxxxxxxxxx Do not reply to spam, report it: https://pagure.io/fedora-infrastructure/new_issue