From c0f83c89a9160b7c4f3cf73b05508ee0fc216119 Mon Sep 17 00:00:00 2001 From: Mali Akmanalp Date: Tue, 16 Jun 2015 18:42:16 -0400 Subject: [PATCH] Fix industries bug where I was using the wrong classification system. ISIC 4 -> ISIC 3 --- colombia/import.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/colombia/import.py b/colombia/import.py index c9404bd..715d342 100644 --- a/colombia/import.py +++ b/colombia/import.py @@ -268,7 +268,7 @@ def test_process_cpy(self): location_map = {l.code: l for l in locations} - industry_classification = classification.load("industry/ISIC/Colombia/out/isic_ac_4.0.csv") + industry_classification = classification.load("industry/ISIC/Colombia/out/isic_ac_3.0.csv") industries = classification_to_models(industry_classification, models.Industry) db.session.add_all(industries)