From c45b49a315a501bcac3bd9c9818cb842f4376b79 Mon Sep 17 00:00:00 2001 From: scottsanderson Date: Tue, 7 Aug 2012 15:11:22 -0400 Subject: [PATCH] fix method name typo in eventwindow --- zipline/gens/transform.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zipline/gens/transform.py b/zipline/gens/transform.py index 09f074ae..5651eea9 100644 --- a/zipline/gens/transform.py +++ b/zipline/gens/transform.py @@ -184,7 +184,7 @@ class EventWindow: if self.market_aware: self.drop_condition = self.out_of_market_window else: - self.drop_condition = self.out_of_timedelta + self.drop_condition = self.out_of_delta @abstractmethod def handle_add(self, event):