Open
Description
On 1.34
exporting the results of the balance command to CSV has a total
column:
$ hledger -f all.journal bal -M '^income:.*:salary' --invert --transpose -O csv -e today | head -n 1
"account","income:uber:salary","total"
On 1.40
running the same command results in:
$ hledger -f all.journal bal -M '^income:.*:salary' --invert --transpose -O csv -e today | head -n 1
"account","income:uber:salary","Total:"
The last column changed from total
to Total:
. This seems like a regression.