From 38cea37715255f42fe74d2b2f1b4b2db35ea561c Mon Sep 17 00:00:00 2001 From: Brett Smith Date: Thu, 4 Jun 2020 09:03:37 -0400 Subject: [PATCH] accrual: Load all books since args.since. This lets the tool find and report accruals in the future. --- conservancy_beancount/reports/accrual.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/conservancy_beancount/reports/accrual.py b/conservancy_beancount/reports/accrual.py index 9a9070e..6f77a25 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 287ceea..8623382 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+',