From 2f11a3c93e31444bd9c0a806831eb3f8db12b0ba Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Sun, 28 May 2017 11:40:17 +0100 Subject: [PATCH] Fix variable name --- md_pdf/csl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/md_pdf/csl.py b/md_pdf/csl.py index a7b3836..d922855 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 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):