Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
0.4.6
====================
* Removed dependency on django-stagingcontext
* Updated S3Storage class locations for django-storages

0.4.5 (2025-11-06)
====================
Expand Down
4 changes: 2 additions & 2 deletions ctlsettings/storages.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from storages.backends.s3boto3 import S3Boto3Storage, S3StaticStorage
from storages.backends.s3 import S3Storage, S3StaticStorage


class UploadsStorage(S3Boto3Storage):
class UploadsStorage(S3Storage):
location = 'uploads'


Expand Down