From a789db17898436124436dcb716badaa2ef128f9a Mon Sep 17 00:00:00 2001 From: scottsanderson Date: Wed, 4 Jul 2012 03:48:28 -0400 Subject: [PATCH] make git happy --- zipline/finance/performance.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zipline/finance/performance.py b/zipline/finance/performance.py index 9d761eb1..ab0c17e6 100644 --- a/zipline/finance/performance.py +++ b/zipline/finance/performance.py @@ -261,7 +261,7 @@ class PerformanceTracker(object): self.todays_performance.calculate_performance() def handle_market_close(self): - + # add the return results from today to the list of DailyReturn objects. todays_date = self.market_close.replace(hour=0, minute=0, second=0) todays_return_obj = risk.DailyReturn( @@ -347,7 +347,7 @@ class PerformanceTracker(object): if self.results_socket: log.info("about to stream the risk report...") risk_dict = self.risk_report.to_dict() - + msg = zp.RISK_FRAME(risk_dict) self.results_socket.send(msg) # this signals that the simulation is complete.