From 8a3f8cd1de366698e9ed1f5fae7d04d58628ac0f Mon Sep 17 00:00:00 2001 From: arkiver Date: Mon, 4 Oct 2021 21:09:21 +0200 Subject: [PATCH] Version 20211004.02. Fix incomplete facebook.com fix. --- pipeline.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pipeline.py b/pipeline.py index e4e8321..112b232 100644 --- a/pipeline.py +++ b/pipeline.py @@ -59,7 +59,7 @@ if not WGET_AT: # # Update this each time you make a non-cosmetic change. # It will be added to the WARC files and reported to the tracker. -VERSION = '20211004.01' +VERSION = '20211004.02' TRACKER_ID = 'reddit' TRACKER_HOST = 'legacy-api.arpa.li' MULTI_ITEM_SIZE = 20 @@ -90,7 +90,7 @@ class CheckIP(SimpleTask): ip_set.add(socket.gethostbyname('icanhas.cheezburger.com')) ip_set.add(socket.gethostbyname('archiveteam.org')) - if len(ip_set) != 6: + if len(ip_set) != 5: item.log_output('Got IP addresses: {0}'.format(ip_set)) item.log_output( 'Are you behind a firewall/proxy? That is a big no-no!')