From 420b169d48e12782314227239cd2494b9f1779b0 Mon Sep 17 00:00:00 2001 From: Al Date: Tue, 14 Jun 2016 21:52:11 +0200 Subject: [PATCH] [addresses] adding nb.yaml to valid configs --- scripts/geodata/addresses/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/geodata/addresses/config.py b/scripts/geodata/addresses/config.py index 501314f7..98df2f6e 100644 --- a/scripts/geodata/addresses/config.py +++ b/scripts/geodata/addresses/config.py @@ -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'): + if filename not in ('en.yaml', 'es.yaml', 'ca.yaml', 'fr.yaml', 'de.yaml', 'nl.yaml', 'da.yaml', 'nb.yaml'): continue config = yaml.load(open(os.path.join(ADDRESS_CONFIG_DIR, filename)))