Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gdbinit
Original file line number Diff line number Diff line change
Expand Up @@ -2291,7 +2291,7 @@ class Breakpoints(Dashboard.Module):
# format common information
style = R.style_selected_1 if breakpoint['enabled'] else R.style_selected_2
number = ansi(breakpoint['number'], style)
bp_type = ansi(Breakpoints.NAMES[breakpoint['type']], style)
bp_type = ansi(Breakpoints.NAMES.get(breakpoint['type'], 'unknown'), style)
if breakpoint['temporary']:
bp_type = bp_type + ' {}'.format(ansi('once', style))
if not R.ansi and breakpoint['enabled']:
Expand Down