aboutsummaryrefslogtreecommitdiff
path: root/modules/channel_op.py
diff options
context:
space:
mode:
authorGravatar jesopo2019-08-30 14:40:54 +0100
committerGravatar jesopo2019-08-30 14:40:54 +0100
commit4bfb4c3200506da63eb0451d42a300ee400a176c (patch)
treed3efea90a174ca39371938f6e552b26fc8f5c33a /modules/channel_op.py
parentLogging.BitBotFormatter no longer uses the format it's given (always iso8601) (diff)
signature
Add IntRangeSetting, reorder OptionsSetting arg order
Diffstat (limited to 'modules/channel_op.py')
-rw-r--r--modules/channel_op.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/channel_op.py b/modules/channel_op.py
index b4161f6c..cb4f32e0 100644
--- a/modules/channel_op.py
+++ b/modules/channel_op.py
@@ -13,8 +13,8 @@ KICK_REASON_SETTING = utils.Setting("default-kick-reason",
@utils.export("channelset", utils.Setting("ban-format",
"Set ban format ($n = nick, $u = username, $h = hostname)",
example="*!$u@$h"))
-@utils.export("serverset", utils.OptionsSetting("mute-method",
- ["qmode", "insp", "unreal", "none"],
+@utils.export("serverset", utils.OptionsSetting(
+ ["qmode", "insp", "unreal", "none"], "mute-method",
"Set this server's method of muting users"))
@utils.export("botset", KICK_REASON_SETTING)
@utils.export("serverset", KICK_REASON_SETTING)