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 @@ -933,7 +933,8 @@ def _run_migrator(
933
933
if package :
934
934
if package not in possible_nodes :
935
935
logger .info (
936
- f"Package { package } is not a candidate for migration of { migrator_name } "
936
+ f"Package { package } is not a candidate for migration of { migrator_name } . "
937
+ f"If you want to investigate this, run the make-migrators command."
937
938
)
938
939
return 0
939
940
possible_nodes = [package ]
Original file line number Diff line number Diff line change @@ -692,7 +692,6 @@ def create_migration_yaml_creator(
692
692
693
693
def initialize_migrators (
694
694
gx : nx .DiGraph ,
695
- dry_run : bool = False ,
696
695
) -> MutableSequence [Migrator ]:
697
696
migrators : List [Migrator ] = []
698
697
@@ -811,10 +810,7 @@ def load_migrators() -> MutableSequence[Migrator]:
811
810
812
811
def main (ctx : CliContext ) -> None :
813
812
gx = load_existing_graph ()
814
- migrators = initialize_migrators (
815
- gx ,
816
- dry_run = ctx .dry_run ,
817
- )
813
+ migrators = initialize_migrators (gx )
818
814
with (
819
815
fold_log_lines ("dumping migrators to JSON" ),
820
816
lazy_json_override_backends (
You can’t perform that action at this time.
0 commit comments