File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,10 @@ _gated behind `unstable-v4`_
3030<!-- next-header -->
3131## [ Unreleased] - ReleaseDate
3232
33+ ### Fixes
34+
35+ - * (help)* ` Command::print_help ` now respects ` Command::colored_help `
36+
3337## [ 3.2.17] - 2022-08-12
3438
3539### Fixes
Original file line number Diff line number Diff line change @@ -744,7 +744,7 @@ impl<'help> App<'help> {
744744 /// [`io::stdout()`]: std::io::stdout()
745745 pub fn print_help ( & mut self ) -> io:: Result < ( ) > {
746746 self . _build_self ( ) ;
747- let color = self . get_color ( ) ;
747+ let color = self . color_help ( ) ;
748748
749749 let mut c = Colorizer :: new ( Stream :: Stdout , color) ;
750750 let usage = Usage :: new ( self ) ;
@@ -769,7 +769,7 @@ impl<'help> App<'help> {
769769 /// [`--help` (long)]: Arg::long_help()
770770 pub fn print_long_help ( & mut self ) -> io:: Result < ( ) > {
771771 self . _build_self ( ) ;
772- let color = self . get_color ( ) ;
772+ let color = self . color_help ( ) ;
773773
774774 let mut c = Colorizer :: new ( Stream :: Stdout , color) ;
775775 let usage = Usage :: new ( self ) ;
You can’t perform that action at this time.
0 commit comments