[Answered ]-Mongoengine OperationError on saving

2👍

I had the same error, and this trick work for me:

the_obj_causing_error.reload()
/* make some change */
the_obj_causing_error.price = 5
the_obj_causing_error.save()

just try reload() the object before changing it.

Leave a comment