diff options
| author | 2020-01-23 12:31:23 +0000 | |
|---|---|---|
| committer | 2020-01-23 12:31:23 +0000 | |
| commit | b1df6b640f0a85b83f33819e0d5975b56123fcb0 (patch) | |
| tree | acdc0971218e6d774b318eb2a88ac54dc6664064 /modules | |
| parent | only check missed modes if our mode changes and `MODE #chan` responds (diff) | |
| signature | ||
search for QUIET prefix anywhere, not just at the start of string
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/channel_op.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/channel_op.py b/modules/channel_op.py index d3c0b4d8..66574a57 100644 --- a/modules/channel_op.py +++ b/modules/channel_op.py @@ -407,7 +407,7 @@ class Module(ModuleManager.BaseModule): parsed_mask = utils.irc.hostmask_parse(mask) return list(utils.irc.hostmask_match_many(list, parsed_mask)) def _filter_prefix(self, prefix, list): - return [l for l in list if l.startswith(prefix)] + return [l for l in list if prefix in l] @utils.hook("received.command.clear") @utils.kwarg("channel_only", True) @@ -423,7 +423,7 @@ class Module(ModuleManager.BaseModule): if list_type[0] == "+": if list_type[1:]: - list_mode = type[1] + list_mode = list_type[1] else: raise utils.EventError("Please provide a list mode") |
