From d0a894909471cfd432dcc2ed0a8ac4ce4cecab5e Mon Sep 17 00:00:00 2001 From: Laurent Savaete Date: Tue, 31 Aug 2021 09:33:39 +0100 Subject: [PATCH] Fix typo in collaborators stream --- tap_github/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tap_github/__init__.py b/tap_github/__init__.py index 4f74e1a5..82695b7b 100644 --- a/tap_github/__init__.py +++ b/tap_github/__init__.py @@ -873,7 +873,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