tools: Fix grammar in feature error message

Use "not a supported feature" instead of "not a supported features".
pull/13003/head
Jaeden Amero 2020-05-27 16:17:10 +01:00 committed by Darryl Green
parent 9a8c9e2c29
commit 4e47c38701
1 changed files with 1 additions and 1 deletions

View File

@ -1348,7 +1348,7 @@ class Config(object):
for feature in self.target.features:
if feature not in ALLOWED_FEATURES:
raise ConfigException(
"Feature '%s' is not a supported features" % feature)
"Feature '%s' is not a supported feature" % feature)
return self.target.features