aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Quanta <[email protected]>2020-10-06 21:03:10 +0530
committerGravatar Quanta <[email protected]>2020-10-06 21:03:10 +0530
commit8645da6b03795f7ca88d011091500d71979f6aa8 (patch)
treeb2bb94f9b1a98835c2d0bd025ca94ef2abb0fdee
parentLimit issue body to 500 characters (diff)
Use 3 dots for ellipsis
-rw-r--r--bot/exts/halloween/hacktober-issue-finder.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/halloween/hacktober-issue-finder.py b/bot/exts/halloween/hacktober-issue-finder.py
index 4200ebf8..9deadde9 100644
--- a/bot/exts/halloween/hacktober-issue-finder.py
+++ b/bot/exts/halloween/hacktober-issue-finder.py
@@ -103,7 +103,7 @@ class HacktoberIssues(commands.Cog):
labels = [label["name"] for label in issue["labels"]]
embed = discord.Embed(title=title)
- embed.description = body[:500] + '....' if len(body) > 500 else body
+ embed.description = body[:500] + '...' if len(body) > 500 else body
embed.add_field(name="labels", value="\n".join(labels))
embed.url = issue_url
embed.set_footer(text=issue_url)