From f7a522e3c913c81734a6718bc77a25616131e79d Mon Sep 17 00:00:00 2001 From: Joe Jevnik Date: Thu, 5 May 2016 17:08:24 -0400 Subject: [PATCH] ENH: update --show-progess message in the quantopian-quandl loader --- zipline/data/bundles/quandl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zipline/data/bundles/quandl.py b/zipline/data/bundles/quandl.py index 708e9f35..8636bc54 100644 --- a/zipline/data/bundles/quandl.py +++ b/zipline/data/bundles/quandl.py @@ -320,7 +320,7 @@ def quantopian_quandl_bundle(environ, show_progress, output_dir): if show_progress: - print('Downloading quandl data, can take about 1 minute') + print('Downloading quandl data. This can take about 1 minute.') # use closing for py2 compat with closing(urlopen(QUANTOPIAN_QUANDL_URL)) as f, \ tarfile.open('r', fileobj=BytesIO(f.read())) as tar: