File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -647,15 +647,15 @@ def _show_help(
647
647
options = self .global_options
648
648
parser .set_option_table (options )
649
649
parser .print_help (self .common_usage + "\n Global options:" )
650
- print ('' )
650
+ print ()
651
651
652
652
if display_options :
653
653
parser .set_option_table (self .display_options )
654
654
parser .print_help (
655
655
"Information display options (just display "
656
656
+ "information, ignore any commands)"
657
657
)
658
- print ('' )
658
+ print ()
659
659
660
660
for command in self .commands :
661
661
if isinstance (command , type ) and issubclass (command , Command ):
@@ -669,7 +669,7 @@ def _show_help(
669
669
else :
670
670
parser .set_option_table (klass .user_options )
671
671
parser .print_help ("Options for '%s' command:" % klass .__name__ )
672
- print ('' )
672
+ print ()
673
673
674
674
print (gen_usage (self .script_name ))
675
675
@@ -686,7 +686,7 @@ def handle_display_options(self, option_order):
686
686
# we ignore "foo bar").
687
687
if self .help_commands :
688
688
self .print_commands ()
689
- print ('' )
689
+ print ()
690
690
print (gen_usage (self .script_name ))
691
691
return 1
692
692
You can’t perform that action at this time.
0 commit comments