Importer: Skip unnecessary lines

This commit is contained in:
Felix Breidenstein 2020-03-29 23:56:23 +02:00
parent d505ec7ade
commit 4a4d2e3aaa

View file

@ -67,6 +67,9 @@ def command(filename, profile, force, filetype):
name = line[3]
description = line[4]
if description == "Tagessaldo":
continue
if not force and latest and date < latest.date:
print("Found transaction older than then oldest transction in the DB. Aborting")
sys.exit(1)