Skip to content

Commit 4e47c38

Browse files
Pataterdgreen-arm
authored andcommitted
tools: Fix grammar in feature error message
Use "not a supported feature" instead of "not a supported features".
1 parent 9a8c9e2 commit 4e47c38

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/config/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1348,7 +1348,7 @@ def get_features(self):
13481348
for feature in self.target.features:
13491349
if feature not in ALLOWED_FEATURES:
13501350
raise ConfigException(
1351-
"Feature '%s' is not a supported features" % feature)
1351+
"Feature '%s' is not a supported feature" % feature)
13521352

13531353
return self.target.features
13541354

0 commit comments

Comments
 (0)