summaryrefslogtreecommitdiff
path: root/scraper/s2-pdf-first-pages.py
diff options
context:
space:
mode:
Diffstat (limited to 'scraper/s2-pdf-first-pages.py')
-rw-r--r--scraper/s2-pdf-first-pages.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scraper/s2-pdf-first-pages.py b/scraper/s2-pdf-first-pages.py
index 0a6b20bd..6f1d81e3 100644
--- a/scraper/s2-pdf-first-pages.py
+++ b/scraper/s2-pdf-first-pages.py
@@ -30,7 +30,7 @@ def report_first_pages():
write_report('reports/first_pages.html', title='First pages', keys=None, rows=rows)
write_report('reports/institutions.html', title='Institutions', keys=None, rows=sorted(institutions, key=lambda x: x[1]))
write_report('reports/institutions_missing.html', title='Institutions', keys=None, rows=no_institutions)
- write_csv('reports/institution_names.csv', keys=None, rows=[(name,) for name in deduped_institutions])
+ write_csv('reports/institution_names_extracted.csv', keys=None, rows=[(name,) for name in deduped_institutions])
print("{} deduped institutions".format(len(deduped_institutions)))
def dedupe(a):