diff options
author | 2020-10-11 00:46:47 +0530 | |
---|---|---|
committer | 2020-10-11 00:46:47 +0530 | |
commit | d8b51b804b4d309dafc7ba6aaea7be62c64681be (patch) | |
tree | 092c872781df1b6b093d3aaeb66134009ba652fc | |
parent | reduced num of api calls by 1 (diff) |
gists count fix
-rw-r--r-- | bot/exts/evergreen/githubinfo.py | 2 |
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") |