diff options
| author | 2021-09-01 12:49:50 +0100 | |
|---|---|---|
| committer | 2021-09-01 12:49:50 +0100 | |
| commit | a4351738cc074f42b60521c122e8712888c50498 (patch) | |
| tree | ded4cb387c825583693816d122ac1848e8d3fdae /bot/exts/halloween | |
| parent | Merge pull request #835 from python-discord/discord-2.0 (diff) | |
Start and end codeblocks with newlines to avoid android rendering them inline
Diffstat (limited to 'bot/exts/halloween')
| -rw-r--r-- | bot/exts/halloween/hacktoberstats.py | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/exts/halloween/hacktoberstats.py b/bot/exts/halloween/hacktoberstats.py index 24106a5e..e7ba2f50 100644 --- a/bot/exts/halloween/hacktoberstats.py +++ b/bot/exts/halloween/hacktoberstats.py @@ -61,8 +61,8 @@ class HacktoberStats(commands.Cog):              else:                  msg = (                      f"{author_mention}, you have not linked a GitHub account\n\n" -                    f"You can link your GitHub account using:\n```{ctx.prefix}hackstats link github_username```\n" -                    f"Or query GitHub stats directly using:\n```{ctx.prefix}hackstats github_username```" +                    f"You can link your GitHub account using:\n```\n{ctx.prefix}hackstats link github_username\n```\n" +                    f"Or query GitHub stats directly using:\n```\n{ctx.prefix}hackstats github_username\n```"                  )                  await ctx.send(msg)                  return  |