From 130b996a639fd15751eb76a353c113a7ff1e39eb Mon Sep 17 00:00:00 2001 From: fawce Date: Thu, 5 Apr 2012 23:43:56 -0400 Subject: [PATCH] dropped the cursor from the protocol in zipline. --- zipline/protocol.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/zipline/protocol.py b/zipline/protocol.py index 3b4bfa05..5ea0e9c0 100644 --- a/zipline/protocol.py +++ b/zipline/protocol.py @@ -654,10 +654,8 @@ def PERF_FRAME(perf): # nest the cumulative performance data in the daily. daily_perf['cumulative'] = cumulative_perf - #TODO: pass the cursor value in. result = { 'started_at' : EPOCH(perf['started_at']), - 'cursor' : 0, 'daily' : [daily_perf], 'percent_complete' : perf['progress'], }