'mute_method' -> 'quiet_method'
This commit is contained in:
parent
11bf1d3f7b
commit
74d7e5231d
1 changed files with 1 additions and 1 deletions
|
@ -190,7 +190,7 @@ class Module(ModuleManager.BaseModule):
|
||||||
|
|
||||||
if quiet_method in QUIET_METHODS:
|
if quiet_method in QUIET_METHODS:
|
||||||
return QUIET_METHODS[quiet_method]
|
return QUIET_METHODS[quiet_method]
|
||||||
elif mute_method == "none":
|
elif quiet_method == "none":
|
||||||
return None
|
return None
|
||||||
else:
|
else:
|
||||||
raise ValueError("Unknown mute-method '%s'" % mute_method)
|
raise ValueError("Unknown mute-method '%s'" % mute_method)
|
||||||
|
|
Loading…
Reference in a new issue