File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -59,9 +59,8 @@ script:
5959 cd docs
6060 make html
6161 cd ..
62- doctr deploy devel --build-tags
6362 if [[ -z "$TRAVIS_TAG" ]]; then
64- echo "Not a tagged build."
63+ doctr deploy devel -- build-tags
6564 else
6665 doctr deploy . --build-tags
6766 fi
Original file line number Diff line number Diff line change @@ -62,6 +62,7 @@ Bug Fixes
6262- Fix eurostat URL. (:issue:`669`)
6363- Adjust Alphavantage time series reader to account for descending ordering. (:issue:`666`)
6464- Fix bug in downloading index historical constituents. (:issue:`591`)
65+ - Fix a bug that occurs when an endpoint returns has no data for a date range. (:issue:`640`)
6566
6667Contributors
6768~~~~~~~~~~~~
Original file line number Diff line number Diff line change @@ -252,7 +252,7 @@ def _dl_mult_symbols(self, symbols):
252252 try :
253253 stocks [sym ] = self ._read_one_data (self .url , self ._get_params (sym ))
254254 passed .append (sym )
255- except IOError :
255+ except ( IOError , KeyError ) :
256256 msg = "Failed to read symbol: {0!r}, replacing with NaN."
257257 warnings .warn (msg .format (sym ), SymbolWarning )
258258 failed .append (sym )
You can’t perform that action at this time.
0 commit comments