(self, command_table)
| 562 | return version_string |
| 563 | |
| 564 | def create_parser(self, command_table): |
| 565 | # Also add a 'help' command. |
| 566 | command_table['help'] = self.create_help_command() |
| 567 | cli_data = self._get_cli_data() |
| 568 | parser = MainArgParser( |
| 569 | command_table, |
| 570 | self._cli_version(), |
| 571 | cli_data.get('description', None), |
| 572 | self._get_argument_table(), |
| 573 | prog="aws", |
| 574 | ) |
| 575 | return parser |
| 576 | |
| 577 | def main(self, args=None): |
| 578 | """ |
no test coverage detected