diff --git a/conservancy_beancount/reports/fund.py b/conservancy_beancount/reports/fund.py index 5b436949e6da2aee0f2e2a4f7f75b5acdf87bc18..ce2fb41f0c94445a2cf3f05244c8bec6dea83f77 100644 --- a/conservancy_beancount/reports/fund.py +++ b/conservancy_beancount/reports/fund.py @@ -86,8 +86,8 @@ EQUITY_ACCOUNTS = ['Equity', 'Income', 'Expenses'] INFO_ACCOUNTS = [ 'Assets:Receivable', 'Assets:Prepaid', - 'Liabilities:Payable', 'Liabilities:UnearnedIncome', + 'Liabilities:Payable', ] PROGNAME = 'fund-report' UNRESTRICTED_FUND = 'Conservancy' diff --git a/setup.py b/setup.py index 2712bc755f664571d9eb725a5f2b7f1c54f35185..92bf9b22979f17bff175c954450a2ecccad46fe8 100755 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ from setuptools import setup setup( name='conservancy_beancount', description="Plugin, library, and reports for reading Conservancy's books", - version='1.5.6', + version='1.5.7', author='Software Freedom Conservancy', author_email='info@sfconservancy.org', license='GNU AGPLv3+', diff --git a/tests/test_reports_fund.py b/tests/test_reports_fund.py index 677266a903af76794605afbcda034cf2f08793af..a208f3099183b094bf040cdacd525b600bb14476 100644 --- a/tests/test_reports_fund.py +++ b/tests/test_reports_fund.py @@ -199,8 +199,8 @@ def check_ods_sheet(sheet, account_balances, *, full): if full: check_cell_balance(next(cells), balances['Assets:Receivable']) check_cell_balance(next(cells), balances['Assets:Prepaid']) - check_cell_balance(next(cells), balances['Liabilities:Payable']) check_cell_balance(next(cells), balances['Liabilities']) + check_cell_balance(next(cells), balances['Liabilities:Payable']) assert next(cells, None) is None assert not account_bals, "did not see all funds in report"