Merge pull request #1252 from jasonwirth/master

Correct typo
This commit is contained in:
Joe Jevnik
2016-06-03 14:10:37 -04:00
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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(
+1 -1
View File
@@ -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,
),