From 194ae960fc6849786cb040f215f68115676d7e8a Mon Sep 17 00:00:00 2001 From: terrtia Date: Tue, 30 Jan 2024 11:35:43 +0100 Subject: [PATCH] fix: [crawlers] fix capture return error code --- bin/crawlers/Crawler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/crawlers/Crawler.py b/bin/crawlers/Crawler.py index b1a7d7cd..1f46e938 100755 --- a/bin/crawlers/Crawler.py +++ b/bin/crawlers/Crawler.py @@ -161,7 +161,7 @@ class Crawler(AbstractModule): except ConnectionError: print(capture.uuid) - capture.update(self, -1) + capture.update(-1) self.refresh_lacus_status() time.sleep(self.pending_seconds)