From eb3add32be3fc76504ebf72ba9671c895f1ff929 Mon Sep 17 00:00:00 2001 From: Fran Date: Sun, 3 Nov 2024 01:40:01 -0500 Subject: [PATCH] fix: Don't add double - to username text --- sources/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/main.py b/sources/main.py index a507e9b..7ffccbd 100644 --- a/sources/main.py +++ b/sources/main.py @@ -88,7 +88,7 @@ async def get_short_github_info() -> str: data = GHM.USER.get_followers() for user in data: username = user.login.replace("-", "--") - stats += f"![@{username}](https://img.shields.io/badge/@{username}-black?style=plastic&logo=github&logoColor=fff&link={user.html_url})" + stats += f"![@{user.login}](https://img.shields.io/badge/@{username}-black?style=plastic&logo=github&logoColor=fff&link={user.html_url})" stats += f"\nIf you follow my account you can appear on this list. *This list updates every 12h*\n\n" DBM.i("Adding short GitHub info...")