diff options
author | Étienne Loks <etienne.loks@peacefrogs.net> | 2013-04-16 18:09:54 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2013-04-16 18:09:54 +0200 |
commit | 9cf5db29e0969cd1b77760a5183354af9d6dbd8e (patch) | |
tree | 3a2a64e6ee1dce32213e1cbfe95d441be3635e64 /archaeological_operations/import_from_dbf.py | |
parent | b226a3bcc6bcc0c2e567b3784d3ed17237138119 (diff) | |
download | Ishtar-9cf5db29e0969cd1b77760a5183354af9d6dbd8e.tar.bz2 Ishtar-9cf5db29e0969cd1b77760a5183354af9d6dbd8e.zip |
Small fix on DBF import of operations
Diffstat (limited to 'archaeological_operations/import_from_dbf.py')
-rw-r--r-- | archaeological_operations/import_from_dbf.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/archaeological_operations/import_from_dbf.py b/archaeological_operations/import_from_dbf.py index d0f55cdbe..843e5151c 100644 --- a/archaeological_operations/import_from_dbf.py +++ b/archaeological_operations/import_from_dbf.py @@ -247,8 +247,6 @@ def import_operations_dbf(values, col_defs=DBF_OPE_COLS, update=False, for line_idx, vals in enumerate(values): if stdout: stdout.write("\r* line %d" % (line_idx)) - if not line_idx: - continue # remove header args = {} for col_idx, val in enumerate(vals): if len(col_defs) <= col_idx or not col_defs[col_idx]: |