[addresses/dictionaries] Updates to Portuguese configs, variations for Brasil

This commit is contained in:
Al
2016-06-25 20:29:36 -04:00
parent 8a5dd26dbf
commit ee27dc5ea1
6 changed files with 149 additions and 14 deletions

View File

@@ -26,7 +26,7 @@ class AddressConfig(object):
self.cache = {}
for filename in os.listdir(config_dir):
if filename not in ('en.yaml', 'es.yaml', 'ca.yaml', 'fr.yaml', 'de.yaml', 'nl.yaml', 'da.yaml', 'nb.yaml', 'sv.yaml', 'pt.yaml'):
if filename not in ('en.yaml', 'es.yaml', 'ca.yaml', 'fr.yaml', 'de.yaml', 'nl.yaml', 'da.yaml', 'nb.yaml', 'sv.yaml', 'pt.yaml', 'pl.yaml'):
continue
config = yaml.load(open(os.path.join(ADDRESS_CONFIG_DIR, filename)))