We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the old v1.13.2 this worked:
file=my_model_instance.field_name.file file.open('rb')
The field is a models.FileField with a S3Storage storage.
models.FileField
S3Storage
With v1.14 it's result in e.g.:
File "foo.py", line 123, in bar file.open('rb') File "django/core/files/base.py", line 114, in open raise ValueError("The file cannot be reopened.")
The text was updated successfully, but these errors were encountered:
closed
S3File
I think #1311 which is also released fixed this, will reopen if not. Thanks for the report.
Sorry, something went wrong.
No branches or pull requests
In the old v1.13.2 this worked:
The field is a
models.FileField
with aS3Storage
storage.With v1.14 it's result in e.g.:
The text was updated successfully, but these errors were encountered: