remove unnecessary brackets
This commit is contained in:
parent
f1a43f1101
commit
3dd50f363d
11 changed files with 13 additions and 12 deletions
|
|
@ -75,7 +75,7 @@ class ManpageHelpFormatter(optparse.HelpFormatter):
|
|||
def format_option_strings(self, option):
|
||||
opts = optparse.HelpFormatter.format_option_strings(self, option).split(", ")
|
||||
|
||||
return ".TP\n"+", ".join(["\\fB%s\\fR" % opt for opt in opts])
|
||||
return ".TP\n"+", ".join("\\fB%s\\fR" % opt for opt in opts)
|
||||
|
||||
|
||||
def main():
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue