common/entity.py
changeset 397 cf577e26f924
parent 237 3df2e0ae2eba
child 413 a7366dd3c33c
--- a/common/entity.py	Mon Jan 12 11:00:17 2009 +0100
+++ b/common/entity.py	Mon Jan 12 18:15:14 2009 +0100
@@ -957,11 +957,12 @@
         relations = []
         for key in kwargs:
             relations.append('X %s %%(%s)s' % (key, key))
+        # update current local object
+        self.update(kwargs)
+        # and now update the database
         kwargs['x'] = self.eid
         self.req.execute('SET %s WHERE X eid %%(x)s' % ','.join(relations),
                          kwargs, 'x')
-        for key, val in kwargs.iteritems():
-            self[key] = val
             
     def delete(self):
         assert self.has_eid(), self.eid