Skip to content

Commit

Permalink
Fix inverted --print/--no-print flag (#7524) (#7547)
Browse files Browse the repository at this point in the history
(cherry picked from commit 19d6dab)

Co-authored-by: Doug Beatty <44704949+dbeatty10@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and dbeatty10 authored May 8, 2023
1 parent 2519171 commit 0cd20ff
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .changes/unreleased/Fixes-20230505-132545.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
kind: Fixes
body: Fix inverted `--print/--no-print` flag
time: 2023-05-05T13:25:45.949997-06:00
custom:
Author: dbeatty10 thomasgjerdekog
Issue: "7517"
2 changes: 1 addition & 1 deletion core/dbt/context/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,7 @@ def print(msg: str) -> str:
{% endmacro %}"
"""

if not get_flags().PRINT:
if get_flags().PRINT:
print(msg)
return ""

Expand Down

0 comments on commit 0cd20ff

Please sign in to comment.