diff options
author | 2021-03-20 11:14:33 -0400 | |
---|---|---|
committer | 2021-03-20 11:14:33 -0400 | |
commit | 7fb2134e40f7d9b47759797785d9e47ff059ff7c (patch) | |
tree | c28875755c55b1a4c231d9312c6cfd26020310fa /bot/exts/evergreen/githubinfo.py | |
parent | Update bot/exts/evergreen/githubinfo.py (diff) |
Make a new line for `created_at`
Co-authored-by: Shivansh-007 <[email protected]>
Diffstat (limited to 'bot/exts/evergreen/githubinfo.py')
-rw-r--r-- | bot/exts/evergreen/githubinfo.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/bot/exts/evergreen/githubinfo.py b/bot/exts/evergreen/githubinfo.py index cffdc0b2..75db10d4 100644 --- a/bot/exts/evergreen/githubinfo.py +++ b/bot/exts/evergreen/githubinfo.py @@ -145,9 +145,10 @@ class GithubInfo(commands.Cog): embed.set_footer( text=( - f"{repo_data['forks_count']} " - f"⑂ • {repo_data['stargazers_count']} ⭐ • Created At {repo_created_at} • " - " Last commit " + f"{repo_data['forks_count']} ⑂ " + f"• {repo_data['stargazers_count']} ⭐ " + f"• Created At {repo_created_at} " + f"• Last commit " ) ) |