We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9a2f33 commit b73a8b9Copy full SHA for b73a8b9
conditional/blueprints/major_project_submission.py
@@ -102,6 +102,7 @@ def submit_major_project(user_dict=None):
102
bucket = s3.create_bucket(Bucket="major-project-media")
103
# Collect all the locally cached files and put them in the bucket
104
for file in os.listdir(f"/tmp/{user_dict['username']}"):
105
+ print(file)
106
bucket.upload_file(file, file.split("/")[-1])
107
os.remove(file)
108
os.rmdir(f"/tmp/{user_dict['username']}")
0 commit comments