dont print help lines

git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@1742 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
calvin 2004-09-05 21:01:57 +00:00
parent 60a7760e8e
commit a6e3b7fe70

View file

@ -157,7 +157,6 @@ class LCHelpFormatter (optparse.IndentedHelpFormatter):
if option.help:
text = linkcheck.strformat.wrap(option.help, self.help_width)
help_lines = text.splitlines()
print help_lines
result.append("%*s%s\n" % (indent_first, "", help_lines[0]))
result.extend(["%*s%s\n" % (self.help_position, "", line)
for line in help_lines[1:]])