diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-09-14 15:45:11 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-09-14 15:45:11 -0700 |
commit | 32ab9f040b313ce421620a2df71332e24c425cfc (patch) | |
tree | f94ea6f1bac92f423aa0a22f4676950c20787312 | |
parent | 8b2c46c4d578ba4129316a07dd1e3981520b8921 (diff) | |
download | fatcat-32ab9f040b313ce421620a2df71332e24c425cfc.tar.gz fatcat-32ab9f040b313ce421620a2df71332e24c425cfc.zip |
small typo
-rw-r--r-- | python/fatcat/crossref_importer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/fatcat/crossref_importer.py b/python/fatcat/crossref_importer.py index 38a4bc11..239e6bc1 100644 --- a/python/fatcat/crossref_importer.py +++ b/python/fatcat/crossref_importer.py @@ -40,7 +40,7 @@ class FatcatCrossrefImporter(FatcatImporter): returns a ReleaseEntity """ - # This work is out of scope if it doesn't have authors or a title + # This work is out of scope if it doesn't have authors and a title if (not 'author' in obj) or (not 'title' in obj): return None |