aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/evergreen/githubinfo.py
diff options
context:
space:
mode:
authorGravatar Lakshya Shastri <[email protected]>2020-10-11 00:46:47 +0530
committerGravatar Lakshya Shastri <[email protected]>2020-10-11 00:46:47 +0530
commitd8b51b804b4d309dafc7ba6aaea7be62c64681be (patch)
tree092c872781df1b6b093d3aaeb66134009ba652fc /bot/exts/evergreen/githubinfo.py
parentreduced num of api calls by 1 (diff)
gists count fix
Diffstat (limited to 'bot/exts/evergreen/githubinfo.py')
-rw-r--r--bot/exts/evergreen/githubinfo.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/evergreen/githubinfo.py b/bot/exts/evergreen/githubinfo.py
index 19ec382b..2e38e3ab 100644
--- a/bot/exts/evergreen/githubinfo.py
+++ b/bot/exts/evergreen/githubinfo.py
@@ -83,7 +83,7 @@ class GithubInfo(commands.Cog):
embed.add_field(name="\u200b", value="\u200b")
if user_data['type'] == "User":
- embed.add_field(name="Gists", value=f"[{len(gists)}](https://gist.github.com/{username})")
+ embed.add_field(name="Gists", value=f"[{gists}](https://gist.github.com/{username})")
embed.add_field(name=f"Organization{'s' if len(orgs)!=1 else ''}",
value=orgs_to_add if orgs else "No organizations")