From 4b1159b94da3d30c6e257df797bb5f7615c2c67a Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Wed, 22 Jan 2020 16:05:41 +0000 Subject: [PATCH] tools/keyctl-proxy: blue is not readable on my display :) --- core/tools/keyctl-proxy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/tools/keyctl-proxy b/core/tools/keyctl-proxy index 2f9836c642..40b6d45740 100755 --- a/core/tools/keyctl-proxy +++ b/core/tools/keyctl-proxy @@ -45,7 +45,7 @@ def make_commit(fw_or_type, digest, public_keys): click.echo(f"Commiting to {click.style(fw_or_type.NAME, bold=True)} hash:") for partid in range(4): digest_part = digest[partid * 8 : (partid + 1) * 8] - color = "red" if partid % 2 else "blue" + color = "red" if partid % 2 else "cyan" digest_str = click.style(digest_part.hex().upper(), fg=color) click.echo("\t" + digest_str) click.echo(f"Using path: {click.style(path, bold=True)}")