We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a50fdc commit 3beee54Copy full SHA for 3beee54
bot/exts/help_channels/_channel.py
@@ -15,7 +15,6 @@
15
16
ASKING_GUIDE_URL = "https://pythondiscord.com/pages/asking-good-questions/"
17
BRANDING_REPO_RAW_URL = "https://raw.githubusercontent.com/python-discord/branding"
18
-POST_TITLE = "Python help channel"
19
20
NEW_POST_MSG = """
21
**Remember to:**
@@ -83,7 +82,7 @@ async def send_opened_post_message(post: discord.Thread) -> None:
83
82
color=constants.Colours.bright_green,
84
description=NEW_POST_MSG,
85
)
86
- embed.set_author(name=f"{POST_TITLE} opened", icon_url=NEW_POST_ICON_URL)
+ embed.set_author(name="Python help channel opened", icon_url=NEW_POST_ICON_URL)
87
embed.set_footer(text=NEW_POST_FOOTER)
88
await post.send(embed=embed, content=post.owner.mention)
89
0 commit comments