[Django]-Django admin: TypeError on any post request

7👍

Found the problem.

For the future reference, the problem was the key DATA_UPLOAD_MAX_MEMORY_SIZE in the project settings having a floating point value (10e6 is an easy-to-overlook float in Python). It has to be an integer.

Leave a comment