From 3df2fbe18e3bfd80b1313c18aaaa0546233fb9d6 Mon Sep 17 00:00:00 2001 From: Kevin Yap Date: Thu, 5 Feb 2015 20:13:08 -0800 Subject: [PATCH] Fix name of variable referenced in featureck.py --- src/etc/featureck.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/etc/featureck.py b/src/etc/featureck.py index 064cf1d40ab36..2a3f9ed04e54d 100644 --- a/src/etc/featureck.py +++ b/src/etc/featureck.py @@ -190,9 +190,9 @@ if not name in joint_features: print "error: feature '" + name + "' is both a lang and lib feature but not whitelisted" errors = True - lang_status = lang_feature_stats[name][3] + lang_status = language_feature_stats[name][3] lib_status = lib_feature_stats[name][3] - lang_stable_since = lang_feature_stats[name][4] + lang_stable_since = language_feature_stats[name][4] lib_stable_since = lib_feature_stats[name][4] if lang_status != lib_status and lib_status != "deprecated":