about summary refs log tree commit diff
diff options
context:
space:
mode:
authorKevin Yap <me@kevinyap.ca>2015-02-05 20:13:08 -0800
committerKevin Yap <me@kevinyap.ca>2015-02-05 20:13:08 -0800
commit3df2fbe18e3bfd80b1313c18aaaa0546233fb9d6 (patch)
tree9f2364f1bab537cbd4ab75bffb8c88b4698fa944
parent99f6206c4ea9ecaf61feb39521db5dd72cb717b0 (diff)
downloadrust-3df2fbe18e3bfd80b1313c18aaaa0546233fb9d6.tar.gz
rust-3df2fbe18e3bfd80b1313c18aaaa0546233fb9d6.zip
Fix name of variable referenced in featureck.py
-rw-r--r--src/etc/featureck.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/etc/featureck.py b/src/etc/featureck.py
index 064cf1d40ab..2a3f9ed04e5 100644
--- a/src/etc/featureck.py
+++ b/src/etc/featureck.py
@@ -190,9 +190,9 @@ for name in lib_feature_stats:
         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":