src/cm/utils/misc.py
author raph
Fri, 15 Jan 2010 13:20:42 +0100
changeset 89 1e91034f4cdb
parent 0 40c8f766c9b8
permissions -rw-r--r--
updated fr and no i18n / updated compiled i18n files


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)