diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-28 16:54:56 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-28 16:54:56 -0800 |
commit | 7dcf4f206b1fbea9081481594c8f6a88a7e847e1 (patch) | |
tree | e4281c8352f069b7a99d939cb11743629d4eb3d4 /python | |
parent | 3fd25b04d1548786462520ffb8bfdb46389b7655 (diff) | |
download | fatcat-7dcf4f206b1fbea9081481594c8f6a88a7e847e1.tar.gz fatcat-7dcf4f206b1fbea9081481594c8f6a88a7e847e1.zip |
fix typo in crossref importer
Diffstat (limited to 'python')
-rwxr-xr-x | python/fatcat_import.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/fatcat_import.py b/python/fatcat_import.py index 8d952067..fcb4941b 100755 --- a/python/fatcat_import.py +++ b/python/fatcat_import.py @@ -14,7 +14,7 @@ def run_crossref(args): if args.kafka_mode: KafkaJsonPusher(fci, args.kafka_hosts, args.kafka_env, "api-crossref", "fatcat-import").run() else: - JsonLinePusher(fci).run() + JsonLinePusher(fci, args.json_file).run() def run_orcid(args): foi = OrcidImporter(args.api, |