Skip to content

Commit 8645da6

Browse files
committed
Use 3 dots for ellipsis
1 parent 5f02c61 commit 8645da6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bot/exts/halloween/hacktober-issue-finder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ def format_embed(issue: Dict) -> discord.Embed:
103103
labels = [label["name"] for label in issue["labels"]]
104104

105105
embed = discord.Embed(title=title)
106-
embed.description = body[:500] + '....' if len(body) > 500 else body
106+
embed.description = body[:500] + '...' if len(body) > 500 else body
107107
embed.add_field(name="labels", value="\n".join(labels))
108108
embed.url = issue_url
109109
embed.set_footer(text=issue_url)

0 commit comments

Comments
 (0)