Skip to content

Commit

Permalink
fix describe_node
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Abelson committed Feb 22, 2018
1 parent 69e6c9a commit 75b91a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dbt/node_runners.py
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ def after_hooks(cls, project, adapter, results, flat_graph, elapsed):
def describe_node(self):
materialization = dbt.utils.get_materialization(self.node)
schema_name = self.node.get('schema')
node_name = self.node.get('name')
node_name = self.node.get('alias')

return "{} model {}.{}".format(materialization, schema_name, node_name)

Expand Down

0 comments on commit 75b91a8

Please sign in to comment.