[Django]-Dumpdata, too many arguments?

4๐Ÿ‘

โœ…

get_db_prep_value() takes at least 3 arguments (2 given)

This error sounds familiar: django with multi database support takes a new connection parameter for model fields.

If you are using any third party fields or subclassed Fields they need to be updated to accept / pass this new argument.

The traceback will reveal which field is breaking.

Leave a comment