From 3dbfcaaf8eb630668a7b2f45b3c857175e8c0ee7 Mon Sep 17 00:00:00 2001 From: Kyle Falconer Date: Tue, 22 Nov 2016 13:17:18 -0800 Subject: [PATCH] fixed import issue on this branch --- validate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/validate.py b/validate.py index 93cd2e8..af53cfa 100644 --- a/validate.py +++ b/validate.py @@ -4,7 +4,7 @@ # NoDataError if the file contains only a single column or row. # Created November 2016 by Lisa Litchfield. -import csv +import csv, sys from collections import defaultdict class CkanError(Exception):pass class DuplicateColumnError(CkanError):pass