bradleyg / django-s3direct

Directly upload files to S3 compatible services with Django.
MIT License
661 stars 234 forks source link

get_file_url always ends with slash #153

Closed dntstp closed 5 years ago

dntstp commented 6 years ago

I think it is a typo in widgets.py on line 53: "https://{0}.s3.amazonaws.com{1}/".format(bucket_name, value) should be "https://{0}.s3.amazonaws.com/{1}".format(bucket_name, value)