diff options
Diffstat (limited to '')
| -rw-r--r-- | bot/exts/evergreen/githubinfo.py | 6 | 
1 files changed, 4 insertions, 2 deletions
| diff --git a/bot/exts/evergreen/githubinfo.py b/bot/exts/evergreen/githubinfo.py index 7bc1288d..012cc274 100644 --- a/bot/exts/evergreen/githubinfo.py +++ b/bot/exts/evergreen/githubinfo.py @@ -91,8 +91,10 @@ 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")") +                embed.add_field( +                    name="Gists", +                    value=f"[{gists}](https://gist.github.com/"f"{quote_plus(username, safe='')}"f")" +                )                  embed.add_field(                      name=f"Organization{'s' if len(orgs)!=1 else ''}", | 
