Skip to content

Commit 0533c80

Browse files
committed
stop painting standard error red
1 parent bd11ff7 commit 0533c80

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

bpython/curtsiesfrontend/repl.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -787,9 +787,7 @@ def send_to_stderr(self, error):
787787
lines = error.split('\n')
788788
if lines[-1]:
789789
self.current_stdouterr_line += lines[-1]
790-
self.display_lines.extend([func_for_letter(self.config.color_scheme['error'])(line)
791-
for line in sum([paint.display_linize(line, self.width, blank_line=True)
792-
for line in lines[:-1]], [])])
790+
self.display_lines.extend(sum([paint.display_linize(line, self.width, blank_line=True) for line in lines[:-1]], []))
793791

794792
def send_to_stdin(self, line):
795793
if line.endswith('\n'):

0 commit comments

Comments
 (0)