diff --git a/jensenlab-service/jensenLabService.py b/jensenlab-service/jensenLabService.py index 8745cc0391c1607f9b1b745213f740b3f1b5f867..d59666f5b7aa9becfe9f832e78201e533869f94a 100644 --- a/jensenlab-service/jensenLabService.py +++ b/jensenlab-service/jensenLabService.py @@ -57,7 +57,7 @@ class JensenLabService(TextMiningService): url_mentions = JensenLabService.MENTION_URL.format(entity_type, entity, limit) results = requests.get(url_mentions) assert results.ok - publications_string = results.content.decode().strip().replace('True', 'true').replace('False', 'false') + publications_string = results.content.decode().strip() publications_list, has_more = json.loads(publications_string) return set(publications_list)