We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b96ada1 commit 01cb7d0Copy full SHA for 01cb7d0
bpython/curtsiesfrontend/replpainter.py
@@ -166,8 +166,8 @@ def add_border(line):
166
config.top_border * (width + 2) +
167
config.right_top_corner)
168
bottom_line = border_color(config.left_bottom_corner +
169
- config.bottom_border * (width + 2) +
170
- config.right_bottom_corner)
+ config.bottom_border * (width + 2) +
+ config.right_bottom_corner)
171
172
output_lines = [top_line] + map(add_border, lines) + [bottom_line]
173
r = fsarray(output_lines[:min(rows-1, len(output_lines)-1)] + output_lines[-1:])
0 commit comments