Merge "Fix error message when support matrix entry is missing a driver"

This commit is contained in:
Jenkins 2017-07-11 18:52:47 +00:00 committed by Gerrit Code Review
commit b9fec17974

View File

@ -269,7 +269,7 @@ class SupportMatrixDirective(rst.Directive):
for key in targets:
if key not in feature.implementations:
raise Exception("'%s' missing in '[%s]' section" %
(target.key, section))
(key, section))
features.append(feature)