Skip to content

Commit

Permalink
edit
Browse files Browse the repository at this point in the history
  • Loading branch information
agahkarakuzu committed Mar 20, 2024
1 parent c829fb6 commit 0f9ba4c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
Binary file removed .DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
__pycache__/
*.py[cod]
*$py.class

.DS_Store
# C extensions
*.so

Expand Down
3 changes: 2 additions & 1 deletion api/neurolibre_celery_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -546,7 +546,8 @@ def zenodo_create_buckets_task(self, payload):
collect = {}
for archive_type in payload['archive_assets']:
gh_template_respond(github_client,"started",payload['task_title'], payload['review_repository'],payload['issue_id'],task_id,payload['comment_id'], f"Creating Zenodo buckets for {archive_type}")
r = zenodo_create_bucket(f"({item_to_record_name(archive_type)}) {data['title']}",
tmp = item_to_record_name(archive_type)
r = zenodo_create_bucket(f"({tmp}) {data['title']}",
archive_type,
data['authors'],
payload['repository_url'],
Expand Down

0 comments on commit 0f9ba4c

Please sign in to comment.