aboutsummaryrefslogtreecommitdiffstats
path: root/python/fatcat_web/graphics.py
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2019-09-06 15:59:05 -0700
committerBryan Newbold <bnewbold@robocracy.org>2019-09-06 15:59:05 -0700
commit937b59b7d3adc28ce8af0789eaa00eca14c0b308 (patch)
treee84aef6437c90ed66f72a0fb5413314db5ce2f2f /python/fatcat_web/graphics.py
parent79445faff9c4ceccda6a0fea9db5db4adbbc0e4d (diff)
downloadfatcat-937b59b7d3adc28ce8af0789eaa00eca14c0b308.tar.gz
fatcat-937b59b7d3adc28ce8af0789eaa00eca14c0b308.zip
small tweaks to coverage pages
Diffstat (limited to 'python/fatcat_web/graphics.py')
-rw-r--r--python/fatcat_web/graphics.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/fatcat_web/graphics.py b/python/fatcat_web/graphics.py
index 0e4b7c9d..fea7eb5a 100644
--- a/python/fatcat_web/graphics.py
+++ b/python/fatcat_web/graphics.py
@@ -30,7 +30,7 @@ def ia_coverage_histogram(rows):
chart.x_title = "Year"
#chart.y_title = "Releases"
chart.x_labels = [str(y['year']) for y in years]
- chart.add('Available', [y['available'] for y in years])
+ chart.add('via Fatcat', [y['available'] for y in years])
chart.add('Missing', [y['missing'] for y in years])
return chart