From: Clark Williams williams@redhat.com
redhat: automatically strip newlines in merge.py
When reading configfiles call strip() to remove newlines, so that we can easily find blank lines
Signed-off-by: Clark Williams williams@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 @@ -26,7 +26,7 @@ def usage(msg): # read a config file and return a dictionary of the contents def read_config_file(cfgfile): configs = {} - for l in open(cfgfile).readlines(): + for l in [ n.strip() for n in open(cfgfile).readlines()]: if len(l) == 0: continue if l.startswith("# CONFIG_"): configs[l.split()[1]] = l
-- https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2117