From a524cf1880fbdfac0eb7c64c39b2c66f646b0170 Mon Sep 17 00:00:00 2001 From: Joe Jevnik Date: Tue, 5 Jan 2016 16:27:46 -0500 Subject: [PATCH 1/2] BUG: fix bug that caused symbols to be added to the asset finder twice --- zipline/utils/cli.py | 1 - 1 file changed, 1 deletion(-) diff --git a/zipline/utils/cli.py b/zipline/utils/cli.py index 4d0fb507..45f38499 100644 --- a/zipline/utils/cli.py +++ b/zipline/utils/cli.py @@ -241,7 +241,6 @@ def run_pipeline(print_algo=True, **kwargs): capital_base=float(kwargs['capital_base']), algo_filename=kwargs.get('algofile'), equities_metadata=asset_metadata, - identifiers=symbols, start=start, end=end) From f09af0b77011df6eb67633f1c257013b3431ca1d Mon Sep 17 00:00:00 2001 From: Joe Jevnik Date: Tue, 5 Jan 2016 16:34:26 -0500 Subject: [PATCH 2/2] DOC: whatsnew entry --- docs/source/whatsnew/0.8.4.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/source/whatsnew/0.8.4.txt b/docs/source/whatsnew/0.8.4.txt index 66df1f2e..16ae4ffc 100644 --- a/docs/source/whatsnew/0.8.4.txt +++ b/docs/source/whatsnew/0.8.4.txt @@ -99,6 +99,9 @@ Bug Fixes :class:`~zipline.errors.SetSlippagePostInit` and :class:`~zipline.errors.SetCommissionPostInit` (:issue:`923`). +* Fixed an issue in the CLI that would cause assets to be added twice. + This would map the same symbol to two different sids (:issue:`942`). + Performance ~~~~~~~~~~~