diff options
author | 2021-08-08 00:45:08 +0200 | |
---|---|---|
committer | 2021-08-08 00:45:08 +0200 | |
commit | a412cfe18ecb7845dafae8cedfdd6558a1b4dae4 (patch) | |
tree | bce1f9e1c2fa24c616a49bf4ea8e189d079ad89e /bot/exts/evergreen/githubinfo.py | |
parent | Fine tune indenting in GithubInfo cog (diff) |
Update Stackoverflow, Wolfram, movie_generator cogs to use aiohttp get params
Diffstat (limited to 'bot/exts/evergreen/githubinfo.py')
-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 012cc274..15f6154c 100644 --- a/bot/exts/evergreen/githubinfo.py +++ b/bot/exts/evergreen/githubinfo.py @@ -93,7 +93,7 @@ class GithubInfo(commands.Cog): if user_data["type"] == "User": embed.add_field( name="Gists", - value=f"[{gists}](https://gist.github.com/"f"{quote_plus(username, safe='')}"f")" + value=f"[{gists}](https://gist.github.com/{quote_plus(username, safe='')})" ) embed.add_field( |