1
0
mirror of https://github.com/pirate/ArchiveBox.git synced 2025-08-26 07:44:41 +02:00

fix comments in links.py

This commit is contained in:
mlazana
2019-03-24 19:04:22 +02:00
parent 4d10568477
commit 81d846427e

View File

@@ -39,8 +39,6 @@ def validate_links(links):
links = sorted_links(links) # deterministically sort the links based on timstamp, url
links = exclude_links(links) # exclude links that are in blacklist
print(links)
if not links:
print('[X] No links found :(')
raise SystemExit(1)
@@ -49,7 +47,6 @@ def validate_links(links):
link['title'] = unescape(link['title'].strip()) if link['title'] else None
check_link_structure(link)
print("FINAL LIST", list(links))
return list(links)