From 017f1c5b1c20c3f225e51f4b70ce57facc0d327b Mon Sep 17 00:00:00 2001 From: "Sam G." Date: Mon, 12 Aug 2024 01:52:28 -0700 Subject: [PATCH] update README links, minor logging fix --- README.md | 4 ++-- symconf/config.py | 4 +++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 59cb457..d592e1d 100644 --- a/README.md +++ b/README.md @@ -46,11 +46,11 @@ registered locations. When necessary, `symconf` will also match and execute scri reload apps after updating their configuration. You can find more details on how `symconf`'s matching scheme works in -[Matching](docs/reference/matching). +[Matching](docs/reference/matching.md). # Configuring Before using, you must first set up your config directory to house your config files and -give `symconf` something to act on. See [Configuring](docs/reference/configuring) for +give `symconf` something to act on. See [Configuring](docs/reference/configuring.md) for details. # Installation diff --git a/symconf/config.py b/symconf/config.py index ab252b3..0d21fa4 100644 --- a/symconf/config.py +++ b/symconf/config.py @@ -832,9 +832,11 @@ class ConfigManager: app_template_files = list(app_template_dir.iterdir()) + num_temps = len(app_template_files) + num_themes = len(theme_map) print( color_text("├─", Fore.BLUE), - f'{app_name} :: generating ({len(app_template_files)}) template files' + f'{app_name} :: generating ({num_temps}) templates from ({num_themes}) themes' ) for template_file in app_template_files: