From ae3835b54102769d48bc3d382fd5534da3e0b175 Mon Sep 17 00:00:00 2001 From: smilerz Date: Mon, 19 Apr 2021 14:31:48 -0500 Subject: [PATCH] update ATK scraper --- cookbook/helper/scrapers/cooksillustrated.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cookbook/helper/scrapers/cooksillustrated.py b/cookbook/helper/scrapers/cooksillustrated.py index 56d91826..a297f244 100644 --- a/cookbook/helper/scrapers/cooksillustrated.py +++ b/cookbook/helper/scrapers/cooksillustrated.py @@ -52,7 +52,7 @@ class CooksIllustrated(AbstractScraper): i = [] return "\n".join( i - + [self.recipe['whyThisWorks']] + + [self.recipe.get('whyThisWorks','')] + [ instruction['fields']['content'] for instruction in self.recipe['instructions']