Update metadata exception types to catch TypeErrors #19
1 changed files with 2 additions and 2 deletions
|
@ -107,14 +107,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 = []
|
||||
|
||||
|
|
Loading…
Reference in a new issue