From f388feb0122a8a3727c1e5e62e2a2f0052e881ea Mon Sep 17 00:00:00 2001 From: Bingyao Liu Date: Thu, 3 Dec 2015 20:52:54 +0800 Subject: [PATCH] MAINT Fix a typo for March of 2008 in interesting periods. --- pyfolio/interesting_periods.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfolio/interesting_periods.py b/pyfolio/interesting_periods.py index c9da7ff2..52dd46be 100644 --- a/pyfolio/interesting_periods.py +++ b/pyfolio/interesting_periods.py @@ -48,7 +48,7 @@ # August 2007, March and September of 2008, Q1 & Q2 2009, PERIODS['Aug07'] = (pd.Timestamp('20070801'), pd.Timestamp('20070901')) -PERIODS['Mar08'] = (pd.Timestamp('20080301'), pd.Timestamp('20070401')) +PERIODS['Mar08'] = (pd.Timestamp('20080301'), pd.Timestamp('20080401')) PERIODS['Sept08'] = (pd.Timestamp('20080901'), pd.Timestamp('20081001')) PERIODS['2009Q1'] = (pd.Timestamp('20090101'), pd.Timestamp('20090301')) PERIODS['2009Q2'] = (pd.Timestamp('20090301'), pd.Timestamp('20090601'))