Skip to content

Commit 3daff30

Browse files
committed
FIX: destination_queues attribute access in bot_debugger
1 parent fc3abe4 commit 3daff30

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

intelmq/lib/bot_debugger.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def _message(self, message_action_kind, msg):
109109
if self.instance.group == "Output":
110110
self.outputappend("Output bots can't send message.")
111111
return
112-
if not bool(self.instance._Bot__destination_queues):
112+
if not bool(self.instance.destination_queues):
113113
self.outputappend("Bot has no destination queues.")
114114
return
115115
if msg:

0 commit comments

Comments
 (0)