From 18c4556cc4fb138e7b7adf1767f9ac17d381d9ff Mon Sep 17 00:00:00 2001 From: Philip Nuzhnyi Date: Wed, 8 Nov 2023 14:14:53 +0000 Subject: [PATCH] shorten activity text for rewards --- bots/rewards.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bots/rewards.py b/bots/rewards.py index bad1700..95f6e82 100644 --- a/bots/rewards.py +++ b/bots/rewards.py @@ -27,7 +27,7 @@ async def ticker(self): f"Rewards: {amount_to_k_string(fees + bribes)}" ) await self.update_presence( - f"{amount_to_k_string(fees)} fees and {amount_to_k_string(bribes)} incentives" + f"{amount_to_k_string(fees)} fees & {amount_to_k_string(bribes)} incentives" ) except Exception as ex: LOGGER.error(f"Ticker failed with {ex}")