diff options
| author | Manish Goregaokar <manishsmail@gmail.com> | 2015-02-07 00:43:54 +0530 |
|---|---|---|
| committer | Manish Goregaokar <manishsmail@gmail.com> | 2015-02-07 00:43:54 +0530 |
| commit | 0346bcf44dddf2142861e78c6c3d5acb736607d2 (patch) | |
| tree | d18282ccfc542986965692a28afa1d5f129506b8 | |
| parent | e15538d7ac6c4a7f6ab269565d1aac8cca71e73a (diff) | |
| parent | 3df2fbe18e3bfd80b1313c18aaaa0546233fb9d6 (diff) | |
Rollup merge of #21994 - iKevinY:featureck-fix, r=brson
It seems that `lang_feature_stats` was supposed to refer to `language_feature_stats` instead. r? @brson
| -rw-r--r-- | src/etc/featureck.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/etc/featureck.py b/src/etc/featureck.py index df4ea998fef..ce972c91c81 100644 --- a/src/etc/featureck.py +++ b/src/etc/featureck.py @@ -194,9 +194,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": |
