File tree Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -931,7 +931,8 @@ def _run_migrator(
931
931
if package :
932
932
if package not in possible_nodes :
933
933
logger .info (
934
- f"Package { package } is not a candidate for migration of { migrator_name } "
934
+ f"Package { package } is not a candidate for migration of { migrator_name } . "
935
+ f"If you want to investigate this, run the make-migrators command."
935
936
)
936
937
return 0
937
938
possible_nodes = [package ]
Original file line number Diff line number Diff line change @@ -753,7 +753,6 @@ def add_noarch_python_min_migrator(
753
753
754
754
def initialize_migrators (
755
755
gx : nx .DiGraph ,
756
- dry_run : bool = False ,
757
756
) -> MutableSequence [Migrator ]:
758
757
migrators : List [Migrator ] = []
759
758
@@ -883,10 +882,7 @@ def load_migrators(skip_paused: bool = True) -> MutableSequence[Migrator]:
883
882
884
883
def main (ctx : CliContext ) -> None :
885
884
gx = load_existing_graph ()
886
- migrators = initialize_migrators (
887
- gx ,
888
- dry_run = ctx .dry_run ,
889
- )
885
+ migrators = initialize_migrators (gx )
890
886
with (
891
887
fold_log_lines ("dumping migrators to JSON" ),
892
888
lazy_json_override_backends (
You can’t perform that action at this time.
0 commit comments