Skip to content

Commit

Permalink
IMP openupgrade disable_invalid_filters
Browse files Browse the repository at this point in the history
  • Loading branch information
leemannd committed Nov 1, 2024
1 parent ac5bc6e commit 3367485
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions openupgradelib/openupgrade.py
Original file line number Diff line number Diff line change
Expand Up @@ -2898,6 +2898,13 @@ def format_message(f):
)
f.active = False
break
# ACTION_ID
if f.action_id and not f.action_id.exists():
logger.warning(
format_message(f) + "as it contains an invalid action_id %s.",
f.action_id,
)
f.active = False


def add_fields(env, field_spec):
Expand Down

0 comments on commit 3367485

Please sign in to comment.