Skip to content

Commit 9ff642e

Browse files
authored
[BugFix] display_trace display only last backtrace info (#58)
1 parent 9755745 commit 9ff642e

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

common/context_handler.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -489,8 +489,9 @@ def display_trace(self) -> None:
489489
line += get_frame_arguments(
490490
current_frame, frame_argument_name_color=TERM_COLORS[self.color_settings.frame_argument_name_color]
491491
)
492-
493-
output_line(line)
492+
output_line(line)
493+
else:
494+
output_line(line)
494495

495496
def load_disassembly_syntax(self, debugger: SBDebugger) -> None:
496497
"""Load the disassembly flavour from LLDB into LLEF's state."""

0 commit comments

Comments
 (0)