(self, ctxt, view, title, contents, plaintext)
| 516 | log_error(traceback.format_exc()) |
| 517 | |
| 518 | def _show_markdown_report(self, ctxt, view, title, contents, plaintext): |
| 519 | try: |
| 520 | if view: |
| 521 | view = binaryview.BinaryView(handle=core.BNNewViewReference(view)) |
| 522 | else: |
| 523 | view = None |
| 524 | self.show_markdown_report(view, title, contents, plaintext) |
| 525 | except: |
| 526 | log_error(traceback.format_exc()) |
| 527 | |
| 528 | def _show_html_report(self, ctxt, view, title, contents, plaintext): |
| 529 | try: |
nothing calls this directly
no test coverage detected