Skip to content

Commit

Permalink
Fix capitalization in Note event message about improper model names
Browse files Browse the repository at this point in the history
Co-authored-by: Emily Rockman <[email protected]>
  • Loading branch information
QMalcolm and emmyoop committed Apr 10, 2024
1 parent 9e6c72a commit ce18ab1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/dbt/parser/manifest.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)
Expand Down

0 comments on commit ce18ab1

Please sign in to comment.