made error color red from bright red
This commit is contained in:
parent
532aefc2c8
commit
522c3feab9
1 changed files with 1 additions and 1 deletions
|
@ -137,6 +137,6 @@ class Display:
|
||||||
wrapped = textwrap.wrap(new_msg, 79)
|
wrapped = textwrap.wrap(new_msg, 79)
|
||||||
new_msg = "\n".join(wrapped) + "\n"
|
new_msg = "\n".join(wrapped) + "\n"
|
||||||
if new_msg not in self._errors:
|
if new_msg not in self._errors:
|
||||||
self.display(new_msg, color='bright red', stderr=True)
|
self.display(new_msg, color='red', stderr=True)
|
||||||
self._errors[new_msg] = 1
|
self._errors[new_msg] = 1
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue