really fix.

This commit is contained in:
Edward Betts 2019-10-14 20:04:04 +01:00
parent 8a90bf5e3f
commit 1a7872b136

12
app.py
View file

@ -316,11 +316,13 @@ def existing_depicts_from_entity(entity):
def get_institution(entity, other):
if 'P276' in entity['claims']:
location = wikibase.first_datavalue(entity, 'P276')['id']
return other[location]
elif 'P195' in entity['claims']:
collection = wikibase.first_datavalue(entity, 'P195')['id']
return other[collection]
location = wikibase.first_datavalue(entity, 'P276')
if location:
return other[location['id']]
if 'P195' in entity['claims']:
collection = wikibase.first_datavalue(entity, 'P195')
if collection:
return other[collection['id']]
@app.route("/item/Q<int:item_id>")
def item_page(item_id):