Merge pull request #2353 from dalf/fix-wikidata

[fix] wikidata: fix crash when the item has no description at all and…
dependabot/pip/master/sphinx-6.1.3
Alexandre Flament 4 years ago committed by GitHub
commit d9494283cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -190,7 +190,7 @@ def get_results(attribute_result, attributes, language):
infobox_id_lang = None
infobox_urls = []
infobox_attributes = []
infobox_content = attribute_result.get('itemDescription')
infobox_content = attribute_result.get('itemDescription', [])
img_src = None
img_src_priority = 100

Loading…
Cancel
Save