Skip to content

Commit

Permalink
replace debug with verbose
Browse files Browse the repository at this point in the history
  • Loading branch information
weaverba137 committed Apr 28, 2020
1 parent d200fb7 commit b514105
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ after_success:
- if [[ ${TOXENV} == *-cov ]]; then
if [[ -f .tmp/${TOXENV}/.coverage ]]; then cp -p .tmp/${TOXENV}/.coverage .; fi;
pip install coveralls;
coveralls debug --rcfile=setup.cfg;
coveralls --verbose --rcfile=setup.cfg;
fi
# If codecov is set up for this package, uncomment the two lines below
# pip install codecov
Expand Down
2 changes: 1 addition & 1 deletion pydl/pydlspec2d/spec1d.py
Original file line number Diff line number Diff line change
Expand Up @@ -878,7 +878,7 @@ def readspec(platein, mjd=None, fiber=None, **kwargs):
fibervec = np.array(fiber, dtype='i4')
else:
fibervec = np.zeros(nplate, dtype='i4') + fiber
if 'mjd' is None:
if mjd is None:
mjdvec = latest_mjd(platevec, **kwargs)
else:
try:
Expand Down

0 comments on commit b514105

Please sign in to comment.