accrual: Load all books since args.since.

This lets the tool find and report accruals in the future.
This commit is contained in:
Brett Smith 2020-06-04 09:03:37 -04:00
parent 2bd3e8b462
commit 38cea37715
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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+',