aboutsummaryrefslogtreecommitdiff
path: root/modules/check_mode.py
diff options
context:
space:
mode:
authorGravatar jesopo2019-05-23 10:28:14 +0100
committerGravatar jesopo2019-05-23 10:28:14 +0100
commitcf29c371120929c53490d6017d5f43cf04f3cbc9 (patch)
treefcdce0685aca7a7edb319b35589ecc4ce80edbd6 /modules/check_mode.py
parent`event.eat()` for command.regex hooks in github module (diff)
signature
Add usage examples for all settings
Diffstat (limited to 'modules/check_mode.py')
-rw-r--r--modules/check_mode.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/modules/check_mode.py b/modules/check_mode.py
index a33686d7..acddd703 100644
--- a/modules/check_mode.py
+++ b/modules/check_mode.py
@@ -5,9 +5,11 @@ LOWHIGH = {
"high": "o"
}
@utils.export("channelset", {"setting": "mode-low",
- "help": "Set which channel mode is considered to be 'low' access"})
+ "help": "Set which channel mode is considered to be 'low' access",
+ "example": "v"})
@utils.export("channelset", {"setting": "mode-high",
- "help": "Set which channel mode is considered to be 'high' access"})
+ "help": "Set which channel mode is considered to be 'high' access",
+ "example": "o"})
class Module(ModuleManager.BaseModule):
@utils.hook("preprocess.command")
def preprocess_command(self, event):