aboutsummaryrefslogtreecommitdiffstats
path: root/python/fatcat_tools/importers/shadow.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/fatcat_tools/importers/shadow.py')
-rw-r--r--python/fatcat_tools/importers/shadow.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/python/fatcat_tools/importers/shadow.py b/python/fatcat_tools/importers/shadow.py
index 1a76299e..4cd22775 100644
--- a/python/fatcat_tools/importers/shadow.py
+++ b/python/fatcat_tools/importers/shadow.py
@@ -155,12 +155,6 @@ class ShadowLibraryImporter(EntityImporter):
if u.rel == 'social':
u.rel = 'academicsocial'
- # new wayback URLs, could replace bad old short wayback URLs (from arabesque bug)
- new_wb_urls = [u.url for u in fe.urls]
- new_short_wb_urls = ['https://web.archive.org/web/{}/{}'.format(
- u.split('/')[4][:12], '/'.join(u.split('/')[5:])) for u in new_wb_urls]
- existing.urls = [u for u in existing.urls if not u.url in new_short_wb_urls]
-
# merge the existing into this one and update
merged_urls = {}
for u in fe.urls + existing.urls: