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