src/cm/utils/misc.py
author gibus
Thu, 09 Aug 2012 16:55:25 +0200
changeset 459 a69421197502
parent 0 40c8f766c9b8
permissions -rw-r--r--
Fixed renderContents on BeautifilSoup if there is no body in source html


def update(obj, kwargs):
    """
    Update obj attributes with values from kwargs
    """
    for k,v in kwargs.items():
        if hasattr(obj,k):
            setattr(obj,k,v)