Skip to content

Commit

Permalink
uncapitalize Code (#195)
Browse files Browse the repository at this point in the history
  • Loading branch information
MichelleArk authored Sep 20, 2024
1 parent 98ccfce commit 7e2edee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dbt_common/exceptions/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ def process_stack(self) -> List[str]:
lines = []

if hasattr(self.node, "build_path") and self.node.build_path:
lines.append(f"compiled Code at {self.node.build_path}")
lines.append(f"compiled code at {self.node.build_path}")

return lines + DbtRuntimeError.process_stack(self)

Expand Down

0 comments on commit 7e2edee

Please sign in to comment.