Browse Source

Update cache exceptions following httpx switch

master
David Larlet 4 years ago
parent
commit
9ec27d996b
No known key found for this signature in database
1 changed files with 1 additions and 5 deletions
  1. 1
    5
      cache.py

+ 1
- 5
cache.py View File

print(link_line) print(link_line)
try: try:
title, content = extract_page(url) title, content = extract_page(url)
except (
requests.adapters.SSLError,
lxml.etree.XMLSyntaxError,
requests.exceptions.ConnectionError,
) as e:
except (lxml.etree.XMLSyntaxError, httpx.exceptions.HTTPError,) as e:
print(f"WARNING: {e}") print(f"WARNING: {e}")
title, content = "", "" title, content = "", ""
cache_path = os.path.join(CACHE_PATH, hash_url) cache_path = os.path.join(CACHE_PATH, hash_url)

Loading…
Cancel
Save