Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix inverted --print/--no-print flag (#7524)
(cherry picked from commit 19d6dab)
  • Loading branch information
dbeatty10 authored and github-actions[bot] committed May 8, 2023
commit 5c9836992e78f117923c9b574c5af327c8465800
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