We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4ad911 commit 1f5b7a6Copy full SHA for 1f5b7a6
modules/dnsbl/__init__.py
@@ -14,7 +14,7 @@ def dnsbl(self, event):
14
lists = []
15
for i, arg in reversed(list(enumerate(args))):
16
if arg[0] == "@":
17
- hostname = args.pop(i)
+ hostname = args.pop(i)[1:]
18
if hostname in default_lists:
19
lists.insert(0, default_lists[hostname])
20
else:
0 commit comments