diff options
| author | 2018-11-10 22:35:35 +0000 | |
|---|---|---|
| committer | 2018-11-10 22:35:35 +0000 | |
| commit | 9826209ddfcb28ad525c77ea4d35348266134f2e (patch) | |
| tree | ffdd210240744ee446da6e6beb9df101ac0f3dce /modules/check_mode.py | |
| parent | Treat "low"/"high" as synonymous with "v"/"o" but with a settable override in (diff) | |
| signature | ||
Add missing "}"s in modules/check_mode.py
Diffstat (limited to 'modules/check_mode.py')
| -rw-r--r-- | modules/check_mode.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/check_mode.py b/modules/check_mode.py index cdc1dc12..4986752d 100644 --- a/modules/check_mode.py +++ b/modules/check_mode.py @@ -5,9 +5,9 @@ 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"}) @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"}) class Module(ModuleManager.BaseModule): @utils.hook("preprocess.command") def preprocess_command(self, event): |
