aboutsummaryrefslogtreecommitdiffstats
path: root/python/fatcat_web/entity_helpers.py
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2019-08-12 22:09:10 -0700
committerBryan Newbold <bnewbold@robocracy.org>2019-08-12 22:09:10 -0700
commitedbbecc7607d1e5a1321e6c6b7be6f733db84e99 (patch)
tree7fabfec92f6abed8f5369d937a7389a0f691610e /python/fatcat_web/entity_helpers.py
parentb6d79ead3c0a8d6617628c9e9a4db9d7c081e04c (diff)
downloadfatcat-edbbecc7607d1e5a1321e6c6b7be6f733db84e99.tar.gz
fatcat-edbbecc7607d1e5a1321e6c6b7be6f733db84e99.zip
default container stats by ident, not issnl
Diffstat (limited to 'python/fatcat_web/entity_helpers.py')
-rw-r--r--python/fatcat_web/entity_helpers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/fatcat_web/entity_helpers.py b/python/fatcat_web/entity_helpers.py
index ab5eaea8..4ecd089a 100644
--- a/python/fatcat_web/entity_helpers.py
+++ b/python/fatcat_web/entity_helpers.py
@@ -14,7 +14,7 @@ def enrich_container_entity(entity):
entity._stats = None
if entity.issnl:
try:
- entity._stats = get_elastic_container_stats(entity.issnl)
+ entity._stats = get_elastic_container_stats(entity.ident, issnl=entity.issnl)
except Exception as e:
app.log.error(e)
pass