diff options
author | Bryan Newbold <bnewbold@archive.org> | 2020-04-02 13:07:52 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2020-04-02 13:07:52 -0700 |
commit | d2d2b78067af3e025d44f4f399bc78d7ed15d570 (patch) | |
tree | 422655d4b9d94f5da98cebca70330b6e39427da3 | |
parent | 986ce7a38029f7fb20a51271f67d943678e17386 (diff) | |
download | fatcat-covid19-d2d2b78067af3e025d44f4f399bc78d7ed15d570.tar.gz fatcat-covid19-d2d2b78067af3e025d44f4f399bc78d7ed15d570.zip |
elastic_transform: typo fix
-rwxr-xr-x | elastic_transform.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/elastic_transform.py b/elastic_transform.py index 56e3a0e..38c9ecf 100755 --- a/elastic_transform.py +++ b/elastic_transform.py @@ -74,7 +74,7 @@ def fulltext_to_elasticsearch(row, force_bool=True): if full.get('pdftotext_path'): t['fulltext']['pdftotext_url'] = "/" + full['pdftotext_path'] if full.get('thumbnail_path'): - t['fulltext']['t_thumbnail_url'] = "/" + full['thumbnail_path'] + t['fulltext']['thumbnail_url'] = "/" + full['thumbnail_path'] if full.get('grobid_xml_path'): t['fulltext']['grobid_xml_url'] = "/" + full['grobid_xml_path'] |