Dot-Notation: x._id = ObjectId() doesn't seem to work properly
authorElrond <elrond+mediagoblin.org@samba-tng.org>
Mon, 14 Nov 2011 16:11:37 +0000 (17:11 +0100)
committerElrond <elrond+mediagoblin.org@samba-tng.org>
Tue, 15 Nov 2011 10:32:13 +0000 (11:32 +0100)
commit3618a9ac5112c657fd095a0f9cbd346921a4e800
tree4f1ae2b8f286ce9806a2e2c7855e6f3d76d59710
parenteabe6b678a98fd06d9cd8463935a3b842f41485c
Dot-Notation: x._id = ObjectId() doesn't seem to work properly

For whatever reason, this does not work as expected:
entry._id = ObjectId()
Need to go this way:
entry['_id'] = ObjectId()
mediagoblin/submit/views.py