-
Notifications
You must be signed in to change notification settings - Fork 99
plugins/explain.py: Added explanation for "do not ask to ask". #404
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -82,7 +82,19 @@ class Explain(BotPlugin): | |
| 'newcomer Pull Request\n- review at least a difficulty/' | ||
| 'newcomer Pull Request\n- merge a difficulty/low Pull ' | ||
| 'Request\n- review at least a difficulty/low or higher ' | ||
| 'Pull Request' | ||
| 'Pull Request', | ||
| 'do not ask to ask': 'This seems a lazy way of asking your question ' | ||
| 'Don\'t take it personally. It\'s just that ' | ||
| 'you\'re asking for more than what you think ' | ||
| 'you\'re asking. The solution is not to simply ' | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. the sentance |
||
| 'question people about them, but just to ' | ||
| 'ask for your piece of information by actaully ' | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. typo in "actually" |
||
| 'formalizing it in words. Someone who is idling ' | ||
| 'on the channel and only occasionally glances ' | ||
| 'at what\'s going on is unlikely to answer ' | ||
| 'to your "asking to ask" question, but your ' | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. delete |
||
| 'actual problem description may pique their ' | ||
| 'interest and get them to answer.' | ||
| } | ||
|
|
||
| ERROR_MSG = ( | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
use double quotes around the whole string instead of escaping the single quotes. That way you can keep the single quotes in the string more readable. (this comment applies to all of the instances)