Hello.
Given this file (test.db):
2010-12-08 foo
assets:savings:1 €1.234,56
equity:opening balances
2010-12-08 bar
assets:savings:2 $7.890,12
equity:opening balances
If I do ledger -f test.db print, I get:
2010/12/08 foo
assets:savings:1 €1.234,56
equity:opening balances
2010/12/08 bar
assets:savings:2 $7.890,12
equity:opening balances
For some reason, the amount in $ has more space characters before it
and does not line up with the amount in € above. The same thing
happens when issuing ledger -f test.db bal:
$7.890,12
€1.234,56 assets
$-7.890,12
€-1.234,56 equity
In this case, the alignment is messed up. I'm using Ledger 2.6.3
Any ideas?