From ce18ab17d88407395e46cf790cd92213f5bb30b9 Mon Sep 17 00:00:00 2001 From: Quigley Malcolm Date: Wed, 10 Apr 2024 11:31:57 -0700 Subject: [PATCH] Fix capitalization in `Note` event message about improper model names Co-authored-by: Emily Rockman --- core/dbt/parser/manifest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/dbt/parser/manifest.py b/core/dbt/parser/manifest.py index ae5302b2145..7ef69e5db1d 100644 --- a/core/dbt/parser/manifest.py +++ b/core/dbt/parser/manifest.py @@ -654,8 +654,8 @@ def check_for_spaces_in_model_names(self): if improper_model_names >= 2 and not self.root_project.args.DEBUG: fire_event( Note( - msg=f"Found {improper_model_names} models with spaces in their names, which is deprecated." - "run again with `--debug` to see them all." + msg=f"Found {improper_model_names} models with spaces in their names, which is deprecated. " + "Run again with `--debug` to see them all." ), level=level, )