diff options
| author | 2020-05-06 14:21:44 -0700 | |
|---|---|---|
| committer | 2020-06-13 11:21:06 -0700 | |
| commit | 29d4962518e1b0aa1664b676c33b631e634ad9ea (patch) | |
| tree | aeb64857626d1cc8ed96a9ca45c41bedf3315197 | |
| parent | Code block: fix formatting of example code blocks (diff) | |
Code block: fix missing space between words in message
| -rw-r--r-- | bot/cogs/codeblock/instructions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/cogs/codeblock/instructions.py b/bot/cogs/codeblock/instructions.py index 6d267239d..0f05e68b1 100644 --- a/bot/cogs/codeblock/instructions.py +++ b/bot/cogs/codeblock/instructions.py @@ -107,7 +107,7 @@ def get_no_lang_message(content: str) -> Optional[str]: # Note that get_bad_ticks_message expects the first line to have an extra newline. return ( "It looks like you pasted Python code without syntax highlighting.\n\n" - "Please use syntax highlighting to improve the legibility of your code and make" + "Please use syntax highlighting to improve the legibility of your code and make " "it easier for us to help you.\n\n" f"**To do this, use the following method:**\n{example_blocks}" ) |