From 4610c7a42f6b46f940188fd5a871b9b57710478b Mon Sep 17 00:00:00 2001 From: schdwlk Date: Fri, 8 May 2020 20:32:32 +0200 Subject: [PATCH] Fixed exist test in consumerlocator --- consumerlocator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/consumerlocator.py b/consumerlocator.py index 57f0c44..b741848 100644 --- a/consumerlocator.py +++ b/consumerlocator.py @@ -56,7 +56,7 @@ class ConsumerLocator: for recconsumer in recievedconsumerlist: contains = False - for consumer in self.red.consumerlist: + for consumer in consumer_list: if consumer["Host"] == recconsumer: contains = True