diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-25 18:41:33 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-25 18:41:33 -0800 |
commit | f6f7450903bdbe36bd5fff146b942e34ad221557 (patch) | |
tree | c50332c832f414b5c0070e58a42ceb4751ed4d81 /python/fatcat_tools/importers/common.py | |
parent | 16256f8ed119c072c09b13b0b1a6d4a56bed5113 (diff) | |
download | fatcat-f6f7450903bdbe36bd5fff146b942e34ad221557.tar.gz fatcat-f6f7450903bdbe36bd5fff146b942e34ad221557.zip |
transform and import fixes/tweaks
Diffstat (limited to 'python/fatcat_tools/importers/common.py')
-rw-r--r-- | python/fatcat_tools/importers/common.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/fatcat_tools/importers/common.py b/python/fatcat_tools/importers/common.py index ebdce56f..a29b3019 100644 --- a/python/fatcat_tools/importers/common.py +++ b/python/fatcat_tools/importers/common.py @@ -236,8 +236,8 @@ class EntityImporter: self._entity_queue.append(entity) if len(self._entity_queue) >= self.edit_batch_size: self.insert_batch(self._entity_queue) - self.counts['insert'] += len(_entity_queue) - self._entity_queue = 0 + self.counts['insert'] += len(self._entity_queue) + self._entity_queue = [] def want(self, raw_record): """ |