Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
combine both checks
  • Loading branch information
aranke committed May 8, 2023
commit 462ae1fa9511ec1c7a97ea5c77bb7e7d8cfee53c
2 changes: 1 addition & 1 deletion core/dbt/task/show.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def task_end_messages(self, results):

node_name = result.node.name

if hasattr(result.node, "version"):
if hasattr(result.node, "version") and result.node.version:
node_name += f".v{result.node.version}"

fire_event(
Expand Down