From 64762086b80240d514017c11f56de61c53f837d0 Mon Sep 17 00:00:00 2001 From: Xavier Morel <xmo@openerp.com> Date: Fri, 20 Jun 2014 07:52:42 +0200 Subject: [PATCH] [IMP] unpack a listcomp in a dict passed to an update, pass gencomp directly to update --- openerp/modules/graph.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openerp/modules/graph.py b/openerp/modules/graph.py index 76a9f046dc61..b0f6141e78f8 100644 --- a/openerp/modules/graph.py +++ b/openerp/modules/graph.py @@ -78,7 +78,7 @@ class Graph(dict): ) ## and we update the default values with values from the database - additional_data.update(dict([(x.pop('name'), x) for x in cr.dictfetchall()])) + additional_data.update((x['name'], x) for x in cr.dictfetchall()) for package in self.values(): for k, v in additional_data[package.name].items(): -- GitLab