Add cyan color to channel fingerprint in CLI info

Private channel fingerprints now display in cyan to stand out.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Aaron D. Lee
2026-01-08 00:02:23 -05:00
parent 96b49c68ec
commit b13a9fcd3f

View File

@@ -857,7 +857,7 @@ def info(ctx, full):
# Channel # Channel
if channel_fingerprint: if channel_fingerprint:
masked = f"{channel_fingerprint[:4]}••••••••{channel_fingerprint[-4:]}" masked = f"{channel_fingerprint[:4]}••••••••{channel_fingerprint[-4:]}"
click.echo(f" Channel: {masked}") click.echo(f" Channel: \033[36m{masked}\033[0m") # Cyan for private channel
else: else:
click.echo(" Channel: \033[33mpublic\033[0m") click.echo(" Channel: \033[33mpublic\033[0m")