archive
/
md-pdf
Archived
1
Fork 0

Fix variable name

This commit is contained in:
Jake Howard 2017-05-28 11:40:17 +01:00
parent 503996ba69
commit 2f11a3c93e
1 changed files with 1 additions and 1 deletions

View File

@ -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 to {}".format(ASSET_DIR))
logger.info("Extracting CSL to {}".format(ASSETS_DIR))
bar.start(max_value=len(member_list))
for i, member in enumerate(member_list):