Fix duplicate feature render bug
Features were being rendered for every implementation that existed. This now properly renders features once and their implementation status. Co-Authored-by: Eric Fried <efried@us.ibm.com> Change-Id: I5f527c9efe893aaa3ca8c2de4739d883902ec46d
This commit is contained in:
@@ -121,9 +121,8 @@ class Matrix(object):
|
||||
if not option.startswith(DRIVER_PREFIX):
|
||||
continue
|
||||
|
||||
implementation = _process_implementation(section, option,
|
||||
feature)
|
||||
features.append(implementation)
|
||||
_process_implementation(section, option, feature)
|
||||
features.append(feature)
|
||||
|
||||
return features
|
||||
|
||||
|
||||
Reference in New Issue
Block a user