From 38cea37715255f42fe74d2b2f1b4b2db35ea561c 2020-06-04 13:03:37 From: Brett Smith Date: 2020-06-04 13:03:37 Subject: [PATCH] accrual: Load all books since args.since. This lets the tool find and report accruals in the future. --- diff --git a/conservancy_beancount/reports/accrual.py b/conservancy_beancount/reports/accrual.py index 9a9070e13e3288012c6153c12ae802df1743039d..6f77a255a7ade4bf97d4f7179c3b1926dbbe6482 100644 --- a/conservancy_beancount/reports/accrual.py +++ b/conservancy_beancount/reports/accrual.py @@ -740,7 +740,7 @@ def main(arglist: Optional[Sequence[str]]=None, elif args.report_type is ReportType.AGING: entries, load_errors, _ = books_loader.load_all() else: - entries, load_errors, _ = books_loader.load_fy_range(args.since) + entries, load_errors, _ = books_loader.load_all(args.since) filters.remove_opening_balance_txn(entries) returncode = 0 diff --git a/setup.py b/setup.py index 287ceea933f9fe4043dbc7d71cb53fdbcd038c14..8623382934d517389b1c5b7aa65f8255f4fcf158 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.1.0', + version='1.1.1', author='Software Freedom Conservancy', author_email='info@sfconservancy.org', license='GNU AGPLv3+',