aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--python/fatcat_tools/importers/matched.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/python/fatcat_tools/importers/matched.py b/python/fatcat_tools/importers/matched.py
index 1e154204..4da1d646 100644
--- a/python/fatcat_tools/importers/matched.py
+++ b/python/fatcat_tools/importers/matched.py
@@ -159,9 +159,10 @@ class MatchedImporter(EntityImporter):
# minimum viable "existing" URL cleanup to fix dupes and broken links:
# remove 'None' wayback URLs, and set archive.org rel 'archive'
existing.urls = [u for u in existing.urls if not ('://web.archive.org/web/None/' in u.url)]
- for u in existing.urls:
+ for i in len(existing.urls):
+ u = existing.urls[i]
if u.rel == 'repository' and '://archive.org/download/' in u.url:
- u.rel == 'archive'
+ existing.urls[i].rel == 'archive'
# merge the existing into this one and update
existing.urls = list(set([(u.rel, u.url) for u in fe.urls + existing.urls]))