Oliver Sauder

Results 84 comments of Oliver Sauder

```python def format_drf_errors(response, context, exc): errors = [] # handle generic errors. ValidationError('test') in a view for example if isinstance(response.data, list): for message in response.data: errors.extend(format_error_object(message, "/data", response)) # handle...

I would love to see such a feature a well. I agree with @Bouke though that this library should focus on mailmerge field features Microsoft Word also supports. This is...

Do you know a public repository causing this error?

Some work has been started in https://github.com/aptly-dev/aptly/tree/package-version-slice to expand filter command but unfortunately hasn't been finished yet. If some is keen to pick up the pieces would be appreciated.

I have also noticed that `merge_pages` leads to documents with white pages and MS Word shows error messages that document is invalid. Your approach with the section break could be...

Thanks for your report. This certainly seems to be an issue. I think your proposed fixed will only work partially, though, as the default included resource will still not work....

I have noticed that I talked about starting a discussion on Polymorphic support within DJA, but actually never referenced it here. So the discussion can be found at #1194 and...

When building it with pyinstaller you need to set the option `u` for unbuffered. Then flushing on print is not needed. Example: ``` pyinstaller --onefile --windowed --python-option u python_script.py ```...

We want to think about how to continue supporting Django Polymorphic in the future. As this issue is about polymorphic support, I assume you are or have been using Django...

Thanks for raising this issue. Indeed the current DJA error handling mainly handles ValidationError. In this case however it is a custom exception of simplejwt where DJA then thinks code...