From 850ce339614f3bab424446ce4627afbc57bca0c9 Mon Sep 17 00:00:00 2001 From: Jason Wirth Date: Thu, 2 Jun 2016 18:51:04 -0700 Subject: [PATCH 1/2] Correct typo --- zipline/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zipline/__main__.py b/zipline/__main__.py index fb7b9851..fba2087f 100644 --- a/zipline/__main__.py +++ b/zipline/__main__.py @@ -211,7 +211,7 @@ def run(ctx, if start is None: ctx.fail("must specify a start date with '-s' / '--start'") if end is None: - ctx.fail("must specify an end date with '-s' / '--end'") + ctx.fail("must specify an end date with '-e' / '--end'") if (algotext is not None) == (algofile is not None): ctx.fail( From 4dd6e4fb61bcb01cb2af809128611a8f4a0fd788 Mon Sep 17 00:00:00 2001 From: Jason Wirth Date: Thu, 2 Jun 2016 19:36:18 -0700 Subject: [PATCH 2/2] correct CLI command --- zipline/data/bundles/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zipline/data/bundles/core.py b/zipline/data/bundles/core.py index 7a905e68..ea546662 100644 --- a/zipline/data/bundles/core.py +++ b/zipline/data/bundles/core.py @@ -408,7 +408,7 @@ def _make_bundle_core(): raise raise ValueError( 'no data for bundle {bundle!r} on or before {timestamp}\n' - 'maybe you need to run: $ zipline ingest {bundle}'.format( + 'maybe you need to run: $ zipline ingest -b {bundle}'.format( bundle=bundle_name, timestamp=timestamp, ),