From ad191cc581e7765665d310070ed717d63c46c76c Mon Sep 17 00:00:00 2001 From: irondru Date: Wed, 1 Jul 2026 17:21:26 +0300 Subject: [PATCH] fix: use space instead of comma as BTC thousands separator --- bot_update_pinned_post.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot_update_pinned_post.py b/bot_update_pinned_post.py index dd09e86..8112c3a 100644 --- a/bot_update_pinned_post.py +++ b/bot_update_pinned_post.py @@ -90,7 +90,7 @@ def build_message(usd: float, btc: float, fng_value: int, fng_label: str) -> str return ( f"💲 " f"₽{usd:.2f} 💰 " - f"${btc:,.0f} 😱 {fng_value} ({fng_label})" + f"${btc:,.0f}".replace(",", " ") + f" 😱 {fng_value} ({fng_label})" )