|
@@ -52,7 +52,7 @@ def response(resp):
|
|
api_result = loads(resp.text)
|
|
api_result = loads(resp.text)
|
|
|
|
|
|
# skip disambiguation pages
|
|
# skip disambiguation pages
|
|
- if api_result['type'] != 'standard':
|
|
|
|
|
|
+ if api_result.get('type') != 'standard':
|
|
return []
|
|
return []
|
|
|
|
|
|
title = api_result['title']
|
|
title = api_result['title']
|