Skip to content

Commit

Permalink
add missing slash
Browse files Browse the repository at this point in the history
  • Loading branch information
AurelienGasser committed Jun 1, 2020
1 parent f7b6e91 commit f3b0239
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/substrapp/tasks/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -887,7 +887,7 @@ def transfer_to_bucket(tuple_key, paths):
's3',
aws_access_key_id=ACCESS_KEY,
aws_secret_access_key=SECRET_KEY)
s3.upload_file(tar_path, BUCKET_NAME, f'{S3_PREFIX}{tar_name}' if S3_PREFIX else tar_name)
s3.upload_file(tar_path, BUCKET_NAME, f'{S3_PREFIX}/{tar_name}' if S3_PREFIX else tar_name)


@timeit
Expand Down

0 comments on commit f3b0239

Please sign in to comment.