[Fixed]-Static files in Amazon S3 bucket – Django collectstatic error

1👍

Remove the trailing commas from the following settings. The trailing commas mean that Python treats them as tuples rather than strings.

AWS_ACCESS_KEY_ID = get_env_variable('AWS_ACCESS_KEY_ID')
AWS_SECRET_ACCESS_KEY =  get_env_variable('AWS_SECRET_ACCESS_KEY')

Leave a comment