From 3c77f8b3c72539975cdde8903c2b3eeae4355b47 Mon Sep 17 00:00:00 2001 From: Brett Smith Date: Sat, 16 May 2020 10:32:39 -0400 Subject: [PATCH] plugin: Revert default validation start date to FY2020. While we ultimately want this change, it reveals a lot of errors in the FY2019 books that we don't want to gum up the transition. --- conservancy_beancount/plugin/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conservancy_beancount/plugin/core.py b/conservancy_beancount/plugin/core.py index c65b688..57db6a5 100644 --- a/conservancy_beancount/plugin/core.py +++ b/conservancy_beancount/plugin/core.py @@ -48,7 +48,7 @@ from ..beancount_types import ( # I expect these will become configurable in the future, which is why I'm # keeping them outside of a class, but for now constants will do. -DEFAULT_START_DATE: datetime.date = datetime.date(2019, 3, 1) +DEFAULT_START_DATE: datetime.date = datetime.date(2020, 3, 1) # The default stop date leaves a little room after so it's easy to test # dates past the far end of the range. DEFAULT_STOP_DATE: datetime.date = datetime.date(datetime.MAXYEAR, 1, 1)