You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Note that sometimes the original csv-file includes information, formatted via html. I solved it like this:
# check that unparseable lines are not included as transactions
# dkb should really fix their csv export, they should have the
# money for that, right?
csv_text = csv_text.splitlines()
csv_text_filtered = []
for line in csv_text:
if "<br />" in line:
continue
else:
csv_text_filtered.append(line)
csv_text = "\n".join(csv_text_filtered)
This will exclude transactions that have <br /> in their description.
The text was updated successfully, but these errors were encountered:
Note that sometimes the original csv-file includes information, formatted via html.
I solved it like this:
This will exclude transactions that have
<br />
in their description.The text was updated successfully, but these errors were encountered: