diff --git a/tools/generation/lib/template.py b/tools/generation/lib/template.py index bc66b7e8cb783e5a68aa329fddc58540425b6737..d5fc78d8462a4eb6f9544fc3e879b0adf6dd6c7c 100644 --- a/tools/generation/lib/template.py +++ b/tools/generation/lib/template.py @@ -154,7 +154,7 @@ class Template: features += self.attribs['meta'].get('features', []) features = list(OrderedDict.fromkeys(features)) if len(features): - lines += ['features: ' + yaml.dump(features).strip()] + lines += ['features: ' + re.sub('\n\s*', ' ', yaml.dump(features).strip())] flags = ['generated'] flags += case_values['meta'].get('flags', [])