diff options
author | 2021-09-03 00:31:46 -0700 | |
---|---|---|
committer | 2021-09-03 00:31:46 -0700 | |
commit | 33f50730aa8ef29d4496f218527a1f4c69961a8e (patch) | |
tree | c40e2f23e55119fb33f83271d227103cb9be7c6f /bot/exts/evergreen/cheatsheet.py | |
parent | Merge pull request #802 from python-discord/decorator-factory/typehints-fix (diff) | |
parent | Merge branch 'main' into android-codeblock-fix (diff) |
Merge pull request #839 from python-discord/android-codeblock-fix
Fix android codeblock rendering inconsistency
Diffstat (limited to 'bot/exts/evergreen/cheatsheet.py')
-rw-r--r-- | bot/exts/evergreen/cheatsheet.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/exts/evergreen/cheatsheet.py b/bot/exts/evergreen/cheatsheet.py index f37d3f66..33d29f67 100644 --- a/bot/exts/evergreen/cheatsheet.py +++ b/bot/exts/evergreen/cheatsheet.py @@ -64,13 +64,13 @@ class CheatSheet(commands.Cog): description = ( f"**Result Of cht.sh**\n" f"```python\n{body_text[:body_space]}\n" - f"... (truncated - too many lines)```\n" + f"... (truncated - too many lines)\n```\n" f"Full results: {url} " ) else: description = ( f"**Result Of cht.sh**\n" - f"```python\n{body_text}```\n" + f"```python\n{body_text}\n```\n" f"{url}" ) return False, description |