diff options
Diffstat (limited to 'python/fatcat_tools/importers')
-rw-r--r-- | python/fatcat_tools/importers/ingest.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/fatcat_tools/importers/ingest.py b/python/fatcat_tools/importers/ingest.py index 37956ef3..483932ad 100644 --- a/python/fatcat_tools/importers/ingest.py +++ b/python/fatcat_tools/importers/ingest.py @@ -112,10 +112,10 @@ class IngestFileResultImporter(EntityImporter): The current logic is intentionally conservative as a first step. """ - if not self.want_file(row): - return False if not self.want_ingest(row): return False + if not self.want_file(row): + return False return True |