1 | | From code inspection, I don't see how this can happen: it the call to `obj.save(force_insert=must_create, using=using)`, `must_create` is `False`, so the session should just be updated if it already exists. Here, you're hitting a naked `raise`, which means that the original author thought this should never happen. |
| 1 | From code inspection, I don't see how this can happen: in the call to `obj.save(force_insert=must_create, using=using)`, `must_create` is `False`, so the session should just be updated if it already exists. Here, you're hitting a naked `raise`, which means that the original author thought this should never happen. |