From 4d0d387e19d4ac8886582f8c5cc23c0f388b26fe Mon Sep 17 00:00:00 2001 From: Mauricio Baeza Date: Wed, 13 Dec 2017 23:45:06 -0600 Subject: [PATCH] Fix - Issue 61 --- source/app/controllers/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/app/controllers/util.py b/source/app/controllers/util.py index db7aa25..db47329 100644 --- a/source/app/controllers/util.py +++ b/source/app/controllers/util.py @@ -1719,7 +1719,7 @@ class ImportFacturaLibre(object): data = [] for row in rows: - new = {t: row[s] for s, t in fields} + new = {t: row[s] for s, t in fields if row[s]} data.append(new) return data