mirror of
https://github.com/dbt-labs/dbt-core
synced 2025-12-17 19:31:34 +00:00
Fix generation of deprecations summary (#12202)
This commit is contained in:
6
.changes/unreleased/Fixes-20251124-155756.yaml
Normal file
6
.changes/unreleased/Fixes-20251124-155756.yaml
Normal file
@@ -0,0 +1,6 @@
|
||||
kind: Fixes
|
||||
body: Fix generation of deprecations summary
|
||||
time: 2025-11-24T15:57:56.544123-08:00
|
||||
custom:
|
||||
Author: asiunov
|
||||
Issue: "12146"
|
||||
@@ -271,7 +271,7 @@ def show_deprecations_summary() -> None:
|
||||
deprecation_event = deprecations[deprecation].event()
|
||||
summaries.append(
|
||||
DeprecationSummary(
|
||||
event_name=deprecation_event.__name__,
|
||||
event_name=type(deprecation_event).__name__,
|
||||
event_code=deprecation_event.code(),
|
||||
occurrences=occurrences,
|
||||
).to_msg_dict()
|
||||
|
||||
Reference in New Issue
Block a user