Luke Cousins
Luke Cousins
### Expected behavior There are comments on #10890, but I think they're being missed as the thread is closed. Can that thread be reopened as the bug still exists in...
Closed #133
When checking if the file would overwrite another, it checks relative to the working dir, not the extraction `$to` directory.
This is now the correct method to get the default storage and ensures that https://code.djangoproject.com/ticket/34773 that was fixed in Django 4.2.5 doesn't cause problems with this check. Cheers :beers:
There was some discussion on this in #240 and I really strongly disagree with the idea of catching `BaseException` (or even `Exception` for that matter), and [I'm not alone](https://www.learnpython.dev/03-intermediate-python/40-exceptions/70-best-practices/). We've...
I think the first line of his email sums it up... 
https://github.com/gitbrent/bootstrap4-toggle/blob/38211b945de6e69ed8c90b13be1a0ef65ff75f6a/css/bootstrap4-toggle.css#L15-L20 Sorry if I'm missing something, but why is such a generic css selector as `.btn-group-xs > .btn, .btn-xs` used? This is changing some of our other UI elements which...
When using `upload()` we get an error if the "directory" doesn't exist. With S3 this isn't the case. Thanks for the otherwise brilliant package :+1:
All exceptions get converted to an unknown exception currently, but it would be better if that was only for unknown exceptions. Thanks for the great package :+1:
Since upgrading from 1.14.3 to 1.14.4, we're having a problem with this code: ```python from django.core.files.base import ContentFile from django.core.files.storage import storages storage = storages["default"] file_name = storage.save("example/example.txt", ContentFile(content=b"hello there!"))...