From b13a9fcd3fc52cac69a15ac992dab6d05939c5c1 Mon Sep 17 00:00:00 2001 From: "Aaron D. Lee" Date: Thu, 8 Jan 2026 00:02:23 -0500 Subject: [PATCH] Add cyan color to channel fingerprint in CLI info MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- src/stegasoo/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stegasoo/cli.py b/src/stegasoo/cli.py index 327c242..d6d0ad5 100644 --- a/src/stegasoo/cli.py +++ b/src/stegasoo/cli.py @@ -857,7 +857,7 @@ def info(ctx, full): # Channel if channel_fingerprint: 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: click.echo(" Channel: \033[33mpublic\033[0m")