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 @@ -704,7 +704,6 @@ def create_migration_yaml_creator(
704
704
705
705
def initialize_migrators (
706
706
gx : nx .DiGraph ,
707
- dry_run : bool = False ,
708
707
) -> MutableSequence [Migrator ]:
709
708
migrators : List [Migrator ] = []
710
709
@@ -831,10 +830,7 @@ def load_migrators(skip_paused: bool = True) -> MutableSequence[Migrator]:
831
830
832
831
def main (ctx : CliContext ) -> None :
833
832
gx = load_existing_graph ()
834
- migrators = initialize_migrators (
835
- gx ,
836
- dry_run = ctx .dry_run ,
837
- )
833
+ migrators = initialize_migrators (gx )
838
834
with (
839
835
fold_log_lines ("dumping migrators to JSON" ),
840
836
lazy_json_override_backends (
You can’t perform that action at this time.
0 commit comments