diff --git a/circle.yml b/circle.yml index 95dc18c..259dbb0 100644 --- a/circle.yml +++ b/circle.yml @@ -23,6 +23,6 @@ test: - flake8 md_pdf/ --ignore=E128,E501 - safety check - bandit -r md_pdf/ - - mdp --update-csl + - mdp --update-csl -vvv - cd test-files/ && mdp -vvv - scripts/run-tests.sh diff --git a/md_pdf/csl.py b/md_pdf/csl.py index 1d45830..4368341 100644 --- a/md_pdf/csl.py +++ b/md_pdf/csl.py @@ -39,7 +39,7 @@ def download_csl(): with open(download_location, 'rb') as downloaded_file: with zipfile.ZipFile(downloaded_file) as csl_zip: member_list = csl_zip.namelist() - logger.info("Extracting CSL...") + logger.info("Extracting CSL to {}".format(ASSET_DIR)) bar.start(max_value=len(member_list)) for i, member in enumerate(member_list):