(self, ctxt, result, prompt, ext)
| 612 | log_error(traceback.format_exc()) |
| 613 | |
| 614 | def _get_open_filename_input(self, ctxt, result, prompt, ext): |
| 615 | try: |
| 616 | value = self.get_open_filename_input(prompt, ext) |
| 617 | if value is None: |
| 618 | return False |
| 619 | result[0] = core.BNAllocString(str(value)) |
| 620 | return True |
| 621 | except: |
| 622 | log_error(traceback.format_exc()) |
| 623 | |
| 624 | def _get_save_filename_input(self, ctxt, result, prompt, ext, default_name): |
| 625 | try: |
nothing calls this directly
no test coverage detected