From 9022fb91494571a19fb0a83f6e5ec60d4c1d5a76 Mon Sep 17 00:00:00 2001 From: Al Date: Fri, 10 Feb 2017 23:54:43 -0500 Subject: [PATCH] [places] use country.lower() --- scripts/geodata/places/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/geodata/places/config.py b/scripts/geodata/places/config.py index 739646c5..b9c63dbc 100644 --- a/scripts/geodata/places/config.py +++ b/scripts/geodata/places/config.py @@ -76,7 +76,7 @@ class PlaceConfig(object): config = self.global_config if country: - country_config = self.country_configs.get(country, {}) + country_config = self.country_configs.get(country.lower(), {}) if country_config: config = country_config