mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-23 02:49:27 +01:00
RSS: Fix shadowing of any/all.
This commit is contained in:
parent
79bcc04d0a
commit
d39647142c
@ -384,6 +384,11 @@ class RSS(callbacks.Plugin):
|
|||||||
def should_send_entry(self, channel, entry):
|
def should_send_entry(self, channel, entry):
|
||||||
whitelist = self.registryValue('keywordWhitelist', channel)
|
whitelist = self.registryValue('keywordWhitelist', channel)
|
||||||
blacklist = self.registryValue('keywordBlacklist', channel)
|
blacklist = self.registryValue('keywordBlacklist', channel)
|
||||||
|
|
||||||
|
# fix shadowing by “from supybot.commands import *”
|
||||||
|
all = __builtins__.all
|
||||||
|
any = __builtins__.any
|
||||||
|
|
||||||
if whitelist:
|
if whitelist:
|
||||||
if all(kw not in entry.title and kw not in entry.description
|
if all(kw not in entry.title and kw not in entry.description
|
||||||
for kw in whitelist):
|
for kw in whitelist):
|
||||||
|
Loading…
Reference in New Issue
Block a user