From 2d2b12edf6e734d5028411b12568f51e63117c8c Mon Sep 17 00:00:00 2001 From: Ben Ockmore Date: Tue, 9 Feb 2016 15:51:08 +0000 Subject: [PATCH] Fixed copy-pasta error in identifier JSON structure --- bbws/structures.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bbws/structures.py b/bbws/structures.py index b96c039..078493b 100644 --- a/bbws/structures.py +++ b/bbws/structures.py @@ -206,7 +206,7 @@ def output(self, key, obj): ENTITY.update({ 'last_updated': fields.DateTime(dt_format='iso8601'), 'aliases_uri': fields.Url('entity_get_aliases', True), - 'identifiers_uri': fields.Url('entity_get_aliases', True), + 'identifiers_uri': fields.Url('entity_get_identifiers', True), 'disambiguation_uri': fields.Url('entity_get_disambiguation', True), 'annotation_uri': fields.Url('entity_get_annotation', True), 'relationships_uri': fields.Url('relationship_get_many', True),