summaryrefslogtreecommitdiff
path: root/s2-pdf-report.py
diff options
context:
space:
mode:
Diffstat (limited to 's2-pdf-report.py')
-rw-r--r--s2-pdf-report.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/s2-pdf-report.py b/s2-pdf-report.py
index 7977660f..b22d44d5 100644
--- a/s2-pdf-report.py
+++ b/s2-pdf-report.py
@@ -28,7 +28,7 @@ def pdf_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.txt', keys=None, rows=[(name,) for name in deduped_institutions])
+ write_csv('reports/institution_names.csv', keys=None, rows=[(name,) for name in deduped_institutions])
print("{} deduped institutions".format(len(deduped_institutions)))
def dedupe(a):