reg only prints accounts matching LIKES and not NOTLIKEs
parent
117c300533
commit
7a828f8463
|
|
@ -103,7 +103,7 @@ func Main() {
|
||||||
|
|
||||||
for _, transaction := range transactions {
|
for _, transaction := range transactions {
|
||||||
fmt.Println(transaction[0].Date)
|
fmt.Println(transaction[0].Date)
|
||||||
FPrintBalances(os.Stdout, ledger.Deltas(transaction).Like(likes).Balances())
|
FPrintBalances(os.Stdout, ledger.Deltas(transaction).Like(likes...).Balances())
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
panic("unknown command " + positional[0])
|
panic("unknown command " + positional[0])
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue