diff options
Diffstat (limited to 'python')
| -rw-r--r-- | python/fatcat/importer_common.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/python/fatcat/importer_common.py b/python/fatcat/importer_common.py index 9949d847..c1566e65 100644 --- a/python/fatcat/importer_common.py +++ b/python/fatcat/importer_common.py @@ -43,7 +43,7 @@ class FatcatImporter:      def process_batch(self, source, size=50):          """Reads and processes in batches (not API-call-per-)"""          for rows in grouper(source, size): -            self.create_batch(rows, eg.id) +            self.create_batch(rows)      def process_csv_source(self, source, group_size=100, delimiter=','):          reader = csv.DictReader(source, delimiter=delimiter)  | 
