From 1032972b74a8cd7dab69008fb8e0be53999e5f17 Mon Sep 17 00:00:00 2001 From: jfkirk Date: Wed, 8 Jul 2015 09:52:14 -0400 Subject: [PATCH] ENH: Adds the full Asset objects to the kwargs of MultipleSymbolsFound --- 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 158bbe38..2962d952 100644 --- a/zipline/assets/assets.py +++ b/zipline/assets/assets.py @@ -173,7 +173,7 @@ class AssetFinder(object): return infos[0] else: raise MultipleSymbolsFound(symbol=symbol, - options=str(infos)) + options=infos) # Try to find symbol matching as_of_date asset, _ = self._lookup_symbol_in_infos(infos, as_of_date)