From e7e4db070186e76208082154ba2e065d8fd540f3 Mon Sep 17 00:00:00 2001 From: kglowinski Date: Tue, 6 Sep 2016 10:11:44 -0400 Subject: [PATCH] BUG: Fixing 2/3 compat. --- zipline/assets/assets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zipline/assets/assets.py b/zipline/assets/assets.py index 1e25181b..e797ff26 100644 --- a/zipline/assets/assets.py +++ b/zipline/assets/assets.py @@ -650,7 +650,7 @@ class AssetFinder(object): # no equity owned the fuzzy symbol on the date requested raise SymbolNotFound(symbol=symbol) - sid_keys = options.keys() + sid_keys = list(options.keys()) # If there was only one owner, or there is a fuzzy and non-fuzzy which # map to the same sid, return it. if len(options) == 1: