[places] use country.lower()

This commit is contained in:
Al
2017-02-10 23:54:43 -05:00
parent a0d674274a
commit 9022fb9149

View File

@@ -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