Skip to content

Commit d5bead4

Browse files
committed
Tweak output
1 parent 4e5feda commit d5bead4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: meta_package_manager/cli.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -437,16 +437,16 @@ def remove_logging_override():
437437
user_selection = ctx.obj.get("managers_to_add", None)
438438
managers_to_remove = ctx.obj.get("managers_to_remove", None)
439439
selection_string = (
440-
": platform default"
440+
" platform default"
441441
if not user_selection
442-
else " > " + " > ".join(map(theme.invoked_command, user_selection))
442+
else "> " + " > ".join(map(theme.invoked_command, user_selection))
443443
)
444444
deselection_string = (
445445
"None"
446446
if not managers_to_remove
447447
else ", ".join(map(theme.invoked_command, sorted(managers_to_remove)))
448448
)
449-
logging.info(f"User selection of managers by priority{selection_string}")
449+
logging.info(f"User selection of managers by priority:{selection_string}")
450450
logging.info(f"Managers dropped by user: {deselection_string}")
451451

452452
# Select the subset of manager to target, and apply manager-level options.

0 commit comments

Comments
 (0)