Skip to content

Commit

Permalink
Replace call to self._clean_name with clean_name (#252)
Browse files Browse the repository at this point in the history
* Replace call to self._clean_name with clean_name
* Require django-storages>=1.6

clean_name utility function was first made available in version 1.6
  • Loading branch information
agsimmons authored Mar 31, 2023
1 parent d7ef7d5 commit 660d079
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ classifiers = [
requires-python = ">=3.9"
dependencies = [
"django>=2.0",
"django-storages",
"django-storages>=1.6",
"boto3",
]

Expand Down
3 changes: 2 additions & 1 deletion s3file/storages_optimized.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from storages.backends.s3boto3 import S3Boto3Storage
from storages.utils import clean_name


class S3OptimizedUploadStorage(S3Boto3Storage):
Expand All @@ -16,7 +17,7 @@ class S3OptimizedUploadStorage(S3Boto3Storage):
def _save(self, name, content):
# Basically copy the implementation of _save of S3Boto3Storage
# and replace the obj.upload_fileobj with a copy function
cleaned_name = self._clean_name(name)
cleaned_name = clean_name(name)
name = self._normalize_name(cleaned_name)
params = self._get_write_parameters(name, content)

Expand Down

0 comments on commit 660d079

Please sign in to comment.