Fix Python 2 support of last commit.

This commit is contained in:
Valentin Lorentz 2016-09-20 23:22:13 +02:00
parent 2cfe0f679f
commit d7099794bc

View File

@ -385,7 +385,7 @@ class RSS(callbacks.Plugin):
whitelist = self.registryValue('keywordWhitelist', channel)
blacklist = self.registryValue('keywordBlacklist', channel)
# fix shadowing by “from supybot.commands import *”
# fix shadowing by "from supybot.commands import *"
try:
all = __builtins__.all
any = __builtins__.any