From 9a262deb4e96712f5efa673c387d9620a7ee8c0e Mon Sep 17 00:00:00 2001 From: Simon Kelly Date: Tue, 5 Sep 2017 16:57:27 +0200 Subject: [PATCH] use passed in missing value --- commcare_export/minilinq.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commcare_export/minilinq.py b/commcare_export/minilinq.py index 612cfead..433f25e4 100644 --- a/commcare_export/minilinq.py +++ b/commcare_export/minilinq.py @@ -383,7 +383,7 @@ def __init__(self, table, headings, source, missing_value=None): self.table = table self.headings = headings self.source = source - self.missing_value = missing_value or '' + self.missing_value = missing_value @unwrap('cell') def coerce_cell_blithely(self, cell):