diff options
author | 2021-06-16 20:23:05 +0200 | |
---|---|---|
committer | 2021-06-16 20:23:05 +0200 | |
commit | 6b413d353949a72b2ae7fa6a0230fd751e01a7e7 (patch) | |
tree | bef037df1eedac0aa9e24aa5d9c3fdf9c385e4c0 | |
parent | Merge pull request #1642 from FaresAhmedb/#1640 (diff) | |
parent | Merge branch 'main' into swfarnsworth/help_channel_message (diff) |
Merge pull request #1638 from python-discord/swfarnsworth/help_channel_message
Proposed alternative "available help channel" message.
-rw-r--r-- | bot/exts/help_channels/_message.py | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/bot/exts/help_channels/_message.py b/bot/exts/help_channels/_message.py index 4c7c39764..befacd263 100644 --- a/bot/exts/help_channels/_message.py +++ b/bot/exts/help_channels/_message.py @@ -15,15 +15,14 @@ log = logging.getLogger(__name__) ASKING_GUIDE_URL = "https://pythondiscord.com/pages/asking-good-questions/" AVAILABLE_MSG = f""" -**Send your question here to claim the channel** -This channel will be dedicated to answering your question only. Others will try to answer and help you solve the issue. +Send your question here to claim the channel. -**Keep in mind:** -• It's always ok to just ask your question. You don't need permission. -• Explain what you expect to happen and what actually happens. -• Include a code sample and error message, if you got any. +**Remember to:** +• **Ask** your Python question, not if you can ask or if there's an expert who can help. +• **Show** a code sample as text (rather than a screenshot) and the error message, if you got one. +• **Explain** what you expect to happen and what actually happens. -For more tips, check out our guide on **[asking good questions]({ASKING_GUIDE_URL})**. +For more tips, check out our guide on [asking good questions]({ASKING_GUIDE_URL}). """ AVAILABLE_TITLE = "Available help channel" |