aboutsummaryrefslogtreecommitdiff
path: root/modules/channel_op.py
diff options
context:
space:
mode:
authorGravatar jesopo2020-01-22 12:03:44 +0000
committerGravatar jesopo2020-01-22 12:03:44 +0000
commit74d7e5231da5a0ff5f72f7447374309fb00ce33e (patch)
tree6f9e089136d3365a87d4fafdd8d361dcafdae23c /modules/channel_op.py
parentdefault to quiet-method being unsupported (diff)
signature
'mute_method' -> 'quiet_method'
Diffstat (limited to 'modules/channel_op.py')
-rw-r--r--modules/channel_op.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/channel_op.py b/modules/channel_op.py
index 07b02257..8b5779e6 100644
--- a/modules/channel_op.py
+++ b/modules/channel_op.py
@@ -190,7 +190,7 @@ class Module(ModuleManager.BaseModule):
if quiet_method in QUIET_METHODS:
return QUIET_METHODS[quiet_method]
- elif mute_method == "none":
+ elif quiet_method == "none":
return None
else:
raise ValueError("Unknown mute-method '%s'" % mute_method)