Skip to content

Commit 3df2fbe

Browse files
committed
Fix name of variable referenced in featureck.py
1 parent 99f6206 commit 3df2fbe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/etc/featureck.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,9 +190,9 @@
190190
if not name in joint_features:
191191
print "error: feature '" + name + "' is both a lang and lib feature but not whitelisted"
192192
errors = True
193-
lang_status = lang_feature_stats[name][3]
193+
lang_status = language_feature_stats[name][3]
194194
lib_status = lib_feature_stats[name][3]
195-
lang_stable_since = lang_feature_stats[name][4]
195+
lang_stable_since = language_feature_stats[name][4]
196196
lib_stable_since = lib_feature_stats[name][4]
197197

198198
if lang_status != lib_status and lib_status != "deprecated":

0 commit comments

Comments
 (0)