diff --git a/tap_github/__init__.py b/tap_github/__init__.py index 3d4536c8..d9cb0cdd 100644 --- a/tap_github/__init__.py +++ b/tap_github/__init__.py @@ -880,7 +880,7 @@ def get_all_collaborators(schema, repo_path, state, mdata, _start_date): with singer.Transformer() as transformer: rec = transformer.transform(collaborator, schema, metadata=metadata.to_map(mdata)) singer.write_record('collaborators', rec, time_extracted=extraction_time) - singer.write_bookmark(state, repo_path, 'collaborator', {'since': singer.utils.strftime(extraction_time)}) + singer.write_bookmark(state, repo_path, 'collaborators', {'since': singer.utils.strftime(extraction_time)}) counter.increment() return state