mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-28 07:13:20 +00:00
Bug 1800494 - Stop using dim terminal style, r=ahochheiden
This appears to be unsupported by blessed. Instead use 'bright_black' which is typically mapped to some shade of grey. Differential Revision: https://phabricator.services.mozilla.com/D162094
This commit is contained in:
parent
e8e1f6902e
commit
081f412666
@ -30,7 +30,7 @@ color_dict = {
|
||||
"bold": "bold",
|
||||
"grey": "grey",
|
||||
"normal": "normal",
|
||||
"dim": "dim",
|
||||
"bright_black": "bright_black",
|
||||
}
|
||||
|
||||
|
||||
@ -183,7 +183,7 @@ class MachFormatter(base.BaseFormatter):
|
||||
return rv
|
||||
|
||||
def _format_stack(self, stack):
|
||||
return "\n%s\n" % self.color_formatter.dim(stack.strip("\n"))
|
||||
return "\n%s\n" % self.color_formatter.bright_black(stack.strip("\n"))
|
||||
|
||||
def _format_suite_summary(self, suite, summary):
|
||||
count = summary["counts"]
|
||||
|
Loading…
Reference in New Issue
Block a user