Fix variable name
This commit is contained in:
parent
503996ba69
commit
2f11a3c93e
1 changed files with 1 additions and 1 deletions
|
@ -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):
|
||||
|
|
Reference in a new issue