small importer fix

This commit is contained in:
vabene1111 2021-05-20 16:52:51 +02:00
parent fe3e611dd1
commit 3340ef9ca4

View File

@ -633,7 +633,7 @@ def recipe_from_source(request):
if mode == 'url' and auto == 'true':
try:
scrape = scrape_me(url)
except WebsiteNotImplementedError:
except (WebsiteNotImplementedError, AttributeError):
try:
scrape = scrape_me(url, wild_mode=True)
except NoSchemaFoundInWildMode: