don't use bolded angle box character (fixes #6)

This commit is contained in:
Josh Junon 2017-03-22 10:26:45 -07:00
parent 8e53f5b660
commit a81b768fd6

View File

@ -155,7 +155,7 @@ def format_frame(frame):
for pc in pipe_cols:
line += ' ' * (pc - index) + u'\u2502'
index = pc + 1
line += (' ' * (col - index)) + u'\u2515 ' + val
line += (' ' * (col - index)) + u'\u2514 ' + val
lines.append(THEME['inspect'](line))
formatted = '\n '.join(lines)