(self)
| 150 | )) |
| 151 | |
| 152 | def start(self): |
| 153 | if self.subapp is None: |
| 154 | print("No subcommand specified. Must specify one of: %s" % \ |
| 155 | (self.subcommands.keys())) |
| 156 | print() |
| 157 | self.print_description() |
| 158 | self.print_subcommands() |
| 159 | self.exit(1) |
| 160 | else: |
| 161 | return self.subapp.start() |
no outgoing calls