Review: Resubmit branch reverts fix for other bug

Thanks for the fix.
I think there's something wrong in the branch structure however : your last 
commit cancels the fix for another bug. That will be a problem if both fixes 
are accepted, so I suggest you apply this patch to a clean branch instead.

On a nitpicking side-note, you could also replace:
    if default is None: default = {}
    default = default.copy()
by:
    if default is None:
        default = {}
    else:
        default.copy()

Lionel.
-- 
https://code.launchpad.net/~openerp-dev/openobject-addons/6.0-opw-580795-rha/+merge/131315
Your team OpenERP R&D Team is subscribed to branch 
lp:~openerp-dev/openobject-addons/6.0-opw-580795-rha.

_______________________________________________
Mailing list: https://launchpad.net/~openerp-dev-gtk
Post to     : [email protected]
Unsubscribe : https://launchpad.net/~openerp-dev-gtk
More help   : https://help.launchpad.net/ListHelp

Reply via email to