src/cm/utils/misc.py
author Production Moz <dev@sopinspace.com>
Mon, 16 Apr 2012 15:57:14 +0200
changeset 410 55ce34b8d146
parent 0 40c8f766c9b8
permissions -rw-r--r--
Allows multiple co-mentable texts to be isplayed in the same HTML page (with Drupal 7 co_ment module).
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
40c8f766c9b8 import from internal svn r 4007
raph
parents:
diff changeset
     1
40c8f766c9b8 import from internal svn r 4007
raph
parents:
diff changeset
     2
def update(obj, kwargs):
40c8f766c9b8 import from internal svn r 4007
raph
parents:
diff changeset
     3
    """
40c8f766c9b8 import from internal svn r 4007
raph
parents:
diff changeset
     4
    Update obj attributes with values from kwargs
40c8f766c9b8 import from internal svn r 4007
raph
parents:
diff changeset
     5
    """
40c8f766c9b8 import from internal svn r 4007
raph
parents:
diff changeset
     6
    for k,v in kwargs.items():
40c8f766c9b8 import from internal svn r 4007
raph
parents:
diff changeset
     7
        if hasattr(obj,k):
40c8f766c9b8 import from internal svn r 4007
raph
parents:
diff changeset
     8
            setattr(obj,k,v)
40c8f766c9b8 import from internal svn r 4007
raph
parents:
diff changeset
     9