| 4532 | |
| 4533 | |
| 4534 | class HelpFormatter(optparse.IndentedHelpFormatter): |
| 4535 | def __init__(self): |
| 4536 | optparse.IndentedHelpFormatter.__init__(self) |
| 4537 | |
| 4538 | def format_description(self, description): |
| 4539 | if description: |
| 4540 | return description + "\n" |
| 4541 | else: |
| 4542 | return "" |
| 4543 | |
| 4544 | |
| 4545 | def printUsage(commands): |