From d739fe6752e6300815d98f8cfc6e88a496d6c8ff Mon Sep 17 00:00:00 2001 From: smilerz Date: Tue, 6 Apr 2021 13:28:35 -0500 Subject: [PATCH] fixes #527 --- cookbook/helper/recipe_url_import.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cookbook/helper/recipe_url_import.py b/cookbook/helper/recipe_url_import.py index 893ba293..83778ec0 100644 --- a/cookbook/helper/recipe_url_import.py +++ b/cookbook/helper/recipe_url_import.py @@ -97,7 +97,7 @@ def get_from_scraper(scrape, space): recipe_json['recipeIngredient'] = ingredients try: - recipe_json['recipeInstructions'] = scrape.instructions() + recipe_json['recipeInstructions'] = parse_instructions(scrape.instructions()) except AttributeError: recipe_json['recipeInstructions'] = ""