Merge pull request 'Update metadata exception types to catch TypeErrors' (#19) from update-metadata-exceptions into main
All checks were successful
ci/woodpecker/push/lint Pipeline was successful

Reviewed-on: #19
This commit is contained in:
Liam Steckler 2024-02-14 07:52:59 -08:00
commit 257d61aefc

View file

@ -127,14 +127,14 @@ with Session(engine) as session:
article_record.dfp_targeting_id = article_soup.find(
"script", {"class": "dfp_targeting", "data-key": "id"}
)["data-value"]
except NameError:
except (NameError, TypeError):
print("Could not find or load IDs for this post")
try:
tags = article_soup.find(
"script", {"class": "dfp_targeting", "data-key": "tags"}
)["data-value"].split("|")
except NameError:
except (NameError, TypeError):
print("Could not find or load any tags for this article")
tags = []