(self, ctxt, result, prompt, title, choice_buf, count)
| 586 | log_error(traceback.format_exc()) |
| 587 | |
| 588 | def _get_choice_input(self, ctxt, result, prompt, title, choice_buf, count): |
| 589 | try: |
| 590 | choices = [] |
| 591 | for i in range(0, count): |
| 592 | choices.append(choice_buf[i]) |
| 593 | value = self.get_choice_input(prompt, title, choices) |
| 594 | if value is None: |
| 595 | return False |
| 596 | result[0] = value |
| 597 | return True |
| 598 | except: |
| 599 | log_error(traceback.format_exc()) |
| 600 | |
| 601 | def _get_large_choice_input(self, ctxt, result, prompt, title, choice_buf, count): |
| 602 | try: |
nothing calls this directly
no test coverage detected