File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -437,16 +437,16 @@ def remove_logging_override():
437
437
user_selection = ctx .obj .get ("managers_to_add" , None )
438
438
managers_to_remove = ctx .obj .get ("managers_to_remove" , None )
439
439
selection_string = (
440
- ": platform default"
440
+ " platform default"
441
441
if not user_selection
442
- else " > " + " > " .join (map (theme .invoked_command , user_selection ))
442
+ else "> " + " > " .join (map (theme .invoked_command , user_selection ))
443
443
)
444
444
deselection_string = (
445
445
"None"
446
446
if not managers_to_remove
447
447
else ", " .join (map (theme .invoked_command , sorted (managers_to_remove )))
448
448
)
449
- logging .info (f"User selection of managers by priority{ selection_string } " )
449
+ logging .info (f"User selection of managers by priority: { selection_string } " )
450
450
logging .info (f"Managers dropped by user: { deselection_string } " )
451
451
452
452
# Select the subset of manager to target, and apply manager-level options.
You can’t perform that action at this time.
0 commit comments