Skip to content

Commit

Permalink
bal: output CSV item amounts on one line #336
Browse files Browse the repository at this point in the history
  • Loading branch information
simonmichael committed Apr 19, 2016
1 parent 6ffc2b2 commit 57626dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hledger/Hledger/Cli/Balance.hs
Expand Up @@ -327,7 +327,7 @@ balance opts@CliOpts{reportopts_=ropts} j = do
balanceReportAsCsv :: ReportOpts -> BalanceReport -> CSV
balanceReportAsCsv opts (items, total) =
["account","balance"] :
[[a, showMixedAmountWithoutPrice b] | ((a, _, _), b) <- items]
[[a, showMixedAmountOneLineWithoutPrice b] | ((a, _, _), b) <- items]
++
if no_total_ opts
then []
Expand Down

0 comments on commit 57626dc

Please sign in to comment.