We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1ae4b4 commit 441621aCopy full SHA for 441621a
datauploader/api/helpers.py
@@ -26,5 +26,5 @@ def get_existing_file_ids(oh_member):
26
for file_info in oh_member.list_files():
27
if 'Github' in file_info['metadata']['tags']:
28
id = file_info['id']
29
- ids.append(ids)
+ ids.append(id)
30
return ids
datauploader/tasks.py
@@ -49,7 +49,7 @@ def process_github(oh_id):
49
gh_file = gh_api.get_github_data(oh_member, github_access_token, current_dt)
50
51
existing_file_ids = get_existing_file_ids(oh_member)
52
-
+ print(existing_file_ids)
53
api.upload_aws(gh_file, create_file_metadata(),
54
oh_access_token,
55
project_member_id=oh_id,
0 commit comments