Merge pull request #942 from quantopian/cli-fix

BUG: fix bug that caused symbols to be added to the asset finder twice
This commit is contained in:
Joe Jevnik
2016-01-05 18:06:33 -05:00
2 changed files with 3 additions and 1 deletions
+3
View File
@@ -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
~~~~~~~~~~~
-1
View File
@@ -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)