diff options
| author | 2019-11-10 19:39:14 +0100 | |
|---|---|---|
| committer | 2019-11-10 19:39:14 +0100 | |
| commit | 7de5156a7719f0639021e8186f7ea17f5b853af7 (patch) | |
| tree | 5e03b233cea45c55268d5169f9ad1dd76064871b | |
| parent | fix signatures and descriptions not being found when present (diff) | |
Add a newline after signatures for readability
| -rw-r--r-- | bot/cogs/doc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/cogs/doc.py b/bot/cogs/doc.py index 6e50cd27d..653d48528 100644 --- a/bot/cogs/doc.py +++ b/bot/cogs/doc.py @@ -326,7 +326,7 @@ class Doc(commands.Cog): else: embed_description = "".join(f"```py\n{textwrap.shorten(signature, 500)}```" for signature in signatures) - embed_description += description + embed_description += f"\n{description}" embed = discord.Embed( title=f'`{symbol}`', |