diff options
author | 2021-03-28 18:12:20 -0400 | |
---|---|---|
committer | 2021-03-28 18:12:20 -0400 | |
commit | 59dd861ca822f8dcef4c73732300e0f737b3bfa1 (patch) | |
tree | 5ddb83779e1de6e8a2dd551c8da8d4e67d281bbe | |
parent | Filter codeblick escapes and allow no mentions for !raw command (diff) |
Update bot/exts/info/information.py
Co-authored-by: Joe Banks <[email protected]>
-rw-r--r-- | bot/exts/info/information.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/info/information.py b/bot/exts/info/information.py index ce35df470..0555544ce 100644 --- a/bot/exts/info/information.py +++ b/bot/exts/info/information.py @@ -448,7 +448,7 @@ class Information(Cog): def add_content(title: str, content: str) -> None: paginator.add_line(f'== {title} ==\n') # Replace backticks as it breaks out of code blocks. - # An invisble character seemed to be the most reasonable solution. We hope it's not close to 2000. + # An invisible character seemed to be the most reasonable solution. We hope it's not close to 2000. paginator.add_line(content.replace('`', '`\u200b')) paginator.close_page() |