From cc9c08cbce909d9a39ea0ccdf3cc9a7be4d963c5 Mon Sep 17 00:00:00 2001 From: odaki Date: Tue, 24 Mar 2020 21:25:45 +0900 Subject: [PATCH] Fix: the keyword comparison Fixed a bug in the keyword check that it was originally supposed to be case-sensitive, but it was not. --- configure-features.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure-features.py b/configure-features.py index dcf1fd64..e0b5e513 100755 --- a/configure-features.py +++ b/configure-features.py @@ -72,7 +72,7 @@ def parseArgs(defaultConfigPath): def isValidFeature(feature): if feature: - if feature.upper() in validFeatureList: + if feature in validFeatureList: return True #valid return False #invalid