From b70c140a0043f78ae56712ba30be9bfab21acb58 Mon Sep 17 00:00:00 2001 From: Al Date: Tue, 13 Sep 2016 21:56:19 -0400 Subject: [PATCH] [fix] casing in state abbreviaitons dictionary --- scripts/geodata/states/state_abbreviations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/geodata/states/state_abbreviations.py b/scripts/geodata/states/state_abbreviations.py index 5c5a6f39..07d980be 100644 --- a/scripts/geodata/states/state_abbreviations.py +++ b/scripts/geodata/states/state_abbreviations.py @@ -32,7 +32,7 @@ class StateAbbreviations(object): full_name = safe_decode(full_name) abbreviation = safe_decode(abbreviation) country_abbreviations[full_name.lower()][language] = abbreviation - country_full_names[abbreviation][language] = full_name + country_full_names[abbreviation.lower()][language] = full_name self.abbreviations[country] = dict(country_abbreviations) self.full_names[country] = dict(country_full_names)