diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2020-01-17 18:05:51 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2020-01-17 18:05:55 -0800 |
commit | d443a5d1c6813e4451137511951129446e017be3 (patch) | |
tree | 28358c93fc300bc949295075b432e8021479ee3e /python/fatcat_import.py | |
parent | d55d45ad667ccf34332b2ce55e8befbd212922ec (diff) | |
download | fatcat-d443a5d1c6813e4451137511951129446e017be3.tar.gz fatcat-d443a5d1c6813e4451137511951129446e017be3.zip |
fix trivial one-character typo in fatcat_import.py
Should have run tests before pushing!
Diffstat (limited to 'python/fatcat_import.py')
-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 07bb83a9..656b9a05 100755 --- a/python/fatcat_import.py +++ b/python/fatcat_import.py @@ -42,7 +42,7 @@ def run_pubmed(args): pi = PubmedImporter(args.api, args.issn_map_file, edit_batch_size=args.batch_size, - do_updates=args.do_updates) + do_updates=args.do_updates, lookup_refs=(not args.no_lookup_refs)) if args.kafka_mode: raise NotImplementedError |