[IMP] unpack a listcomp in a dict passed to an update, pass gencomp directly to update

This commit is contained in:
Xavier Morel 2014-06-20 07:52:42 +02:00
parent 981362b2d8
commit 64762086b8
1 changed files with 1 additions and 1 deletions

View File

@ -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():