Skip to content

Commit

Permalink
Fix inverted --print/--no-print flag (#7524)
Browse files Browse the repository at this point in the history
(cherry picked from commit 19d6dab)
  • Loading branch information
dbeatty10 authored and github-actions[bot] committed May 8, 2023
1 parent 2eaa4f0 commit 5c98369
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 5c98369

Please sign in to comment.