Merge pull request #1399 from ggold7046/patch-15

Update utils.py
This commit is contained in:
Willi Ballenthin
2023-03-28 09:47:11 +02:00
committed by GitHub
2 changed files with 2 additions and 1 deletions

View File

@@ -7,6 +7,7 @@
- extractor: add Binary Ninja feature extractor @xusheng6
- new cli flag `--os` to override auto-detected operating system for a sample @captainGeech42
- Change colour/highlight to "cyan" instead of "blue" for easy noticing.#1384 @ggold7046
### Breaking Changes

View File

@@ -16,7 +16,7 @@ import capa.render.result_document as rd
def bold(s: str) -> str:
"""draw attention to the given string"""
return termcolor.colored(s, "blue")
return termcolor.colored(s, "cyan")
def bold2(s: str) -> str: