aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Lemon <lemon@matthewlemon.com>2019-10-14 05:42:44 +0100
committerMatthew Lemon <lemon@matthewlemon.com>2019-10-14 05:42:44 +0100
commitdc9000e9b646ca2db8334d5bfb61eaeae2ba8517 (patch)
tree589220f7bb71e058671e731ee7e935c9c7ae6dbb
parente3a2c1cb5c9ac9c1b5c7a572ce135aeaa95bfe83 (diff)
quick logging change
-rw-r--r--datamaps/main.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/datamaps/main.py b/datamaps/main.py
index cef19d4..1f5b60d 100644
--- a/datamaps/main.py
+++ b/datamaps/main.py
@@ -140,12 +140,13 @@ def master(master):
datamap = input_dir / datamap_fn
# click.secho(f"EXPORTING master {master} to templates based on {blank}...")
- be_logger.info(f"Exporting master {master} to templates based on {blank}...")
+ be_logger.info(f"Exporting master {master} to templates based on {blank}.")
try:
engine_cli.write_master_to_templates(blank, datamap, master)
except (FileNotFoundError, RuntimeError) as e:
click.secho(str(e), fg="red")
+ be_logger.info("Export complete.")
@report.command()