(self, ctxt, result, prompt, title, choice_buf, count)
| 599 | log_error(traceback.format_exc()) |
| 600 | |
| 601 | def _get_large_choice_input(self, ctxt, result, prompt, title, choice_buf, count): |
| 602 | try: |
| 603 | choices = [] |
| 604 | for i in range(0, count): |
| 605 | choices.append(choice_buf[i]) |
| 606 | value = self.get_large_choice_input(prompt, title, choices) |
| 607 | if value is None: |
| 608 | return False |
| 609 | result[0] = value |
| 610 | return True |
| 611 | except: |
| 612 | log_error(traceback.format_exc()) |
| 613 | |
| 614 | def _get_open_filename_input(self, ctxt, result, prompt, ext): |
| 615 | try: |
nothing calls this directly
no test coverage detected